/* Base Styles */
:root {
    --primary-color: #4a6fa5;
    --secondary-color: #166088;
    --accent-color: #4fc3f7;
    --dark-color: #2d3142;
    --light-color: #f8f9fa;
    --success-color: #4caf50;
    --error-color: #f44336;
    --warning-color: #ff9800;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), #00bcd4);
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn-primary, .btn-secondary, .btn-danger {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: var(--secondary-color);
    box-shadow: var(--box-shadow-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-danger {
    background: var(--error-color);
    color: white;
    border: none;
}

.btn-danger:hover {
    background: #d32f2f;
    box-shadow: var(--box-shadow-hover);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
}

.section-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Header Styles */
.header {
    background-color: white;
    box-shadow: var(--box-shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    transition: var(--transition);
}

.nav-menu ul {
    display: flex;
}

.nav-menu li {
    margin-left: 25px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--dark-color);
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: var(--box-shadow);
    padding: 20px;
    transform: translateY(-150%);
    transition: var(--transition);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu ul li {
    margin-bottom: 15px;
}

.mobile-menu ul li a {
    font-weight: 500;
    color: var(--dark-color);
}

/* Featured Properties */
.featured-properties {
    padding: 80px 0;
    background: white;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.property-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.property-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.property-details {
    padding: 20px;
}

.property-details h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.property-location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.property-location i {
    margin-right: 5px;
    color: var(--primary-color);
}

.property-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.property-features span {
    display: flex;
    align-items: center;
}

.property-features i {
    margin-right: 5px;
    color: var(--primary-color);
}

.property-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.property-price span {
    font-size: 0.9rem;
    font-weight: normal;
}

.property-btn {
    display: block;
    text-align: center;
    padding: 8px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
}

.property-btn:hover {
    background: var(--secondary-color);
}

.text-center {
    text-align: center;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f9f9f9;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    margin: 0 15px;
}

.testimonial-content {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: #666;
}

/* Call to Action */
.cta {
    position: relative;
    padding: 100px 0;
   background: #ff9966;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #ff5e62, #ff9966);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #ff5e62, #ff9966); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    color: white;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Search Page */
.search-page {
    padding: 80px 0 40px;
}

.search-page-header {
    margin-bottom: 30px;
}

.page-title {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: #666;
}

.search-page-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
}

.search-sidebar {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--box-shadow);
    height: fit-content;
}

.filter-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.filter-select, .filter-input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
}

.price-range {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price-range span {
    color: #666;
}

.filter-submit {
    width: 100%;
    margin-bottom: 10px;
}

.search-results {
    display: flex;
    flex-direction: column;
}

.properties-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.no-results {
    text-align: center;
    padding: 50px 0;
    background: white;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.no-results i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.no-results p {
    color: #666;
    margin-bottom: 20px;
}

/* Property Details */
.property-details {
    padding: 80px 0 40px;
}

.property-header {
    margin-bottom: 40px;
}

.property-title {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.property-location {
    display: flex;
    align-items: center;
    color: #666;
    margin-bottom: 1rem;
}

.property-location i {
    margin-right: 5px;
    color: var(--primary-color);
}

.property-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
}

.property-price span {
    font-size: 1rem;
    font-weight: normal;
}

.property-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.property-gallery {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--box-shadow);
}

.main-image {
    height: 400px;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 8px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.thumbnail {
    height: 80px;
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
}

.thumbnail:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-info {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--box-shadow);
}

.property-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.highlight {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
}

.highlight i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.highlight span {
    font-size: 0.9rem;
    color: #666;
}

.highlight strong {
    display: block;
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-top: 5px;
}

.property-description {
    margin-bottom: 30px;
}

.property-description h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.property-description p {
    color: #555;
    line-height: 1.8;
}

.property-features {
    margin-bottom: 30px;
}

.property-features h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.property-features ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.property-features li {
    display: flex;
    align-items: center;
    color: #555;
}

.property-features i {
    margin-right: 8px;
    color: var(--primary-color);
}

.property-contact {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--box-shadow);
}

.contact-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
}

.contact-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    text-align: center;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #555;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
}

.contact-form textarea {
    height: 100px;
    resize: vertical;
}

/* Contact Page */
.contact-page {
    padding: 80px 0 40px;
}

.contact-header {
    margin-bottom: 40px;
    text-align: center;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.info-card p {
    color: #666;
    font-size: 0.9rem;
}

.contact-form-container {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.alert {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.alert-success {
    background: #e8f5e9;
    color: var(--success-color);
    border: 1px solid #c8e6c9;
}

.alert-error {
    background: #ffebee;
    color: var(--error-color);
    border: 1px solid #ffcdd2;
}

.alert ul {
    margin-left: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

/* Auth Pages */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: #f9f9f9;
}

.auth-form-container {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h2 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.auth-header p {
    color: #666;
}

.auth-header a {
    color: var(--primary-color);
    font-weight: 500;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.auth-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
}

.form-actions {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.forgot-password {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Dashboard */
.dashboard {
    padding: 100px 0 40px;
}

.dashboard-header {
    margin-bottom: 40px;
}

.dashboard-header h1 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.dashboard-header p {
    color: #666;
}

.dashboard-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}

.dashboard-sidebar {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--box-shadow);
    height: fit-content;
}

.dashboard-nav ul li {
    margin-bottom: 10px;
}

.dashboard-nav ul li a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 4px;
    transition: var(--transition);
    color: #555;
}

.dashboard-nav ul li a:hover {
    background: #f5f5f5;
    color: var(--primary-color);
}

.dashboard-nav ul li a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.dashboard-nav ul li.active a {
    background: var(--gradient-primary);
    color: white;
}

.dashboard-main {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.dashboard-actions {
    margin-bottom: 30px;
    display: flex;
    justify-content: flex-end;
}

.dashboard-properties h2 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.no-properties {
    text-align: center;
    padding: 50px 0;
}

.no-properties i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.no-properties h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.no-properties p {
    color: #666;
    margin-bottom: 20px;
}

.property-actions {
    display: flex;
    gap: 10px;
}

/* Property Form */
.property-form {
    display: flex;
    flex-direction: column;
}

.form-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.form-section h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.form-hint {
    font-size: 0.8rem;
    color: #666;
    margin-top: 5px;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
}

/* Footer - Dark Theme */
.footer {
    background: #0a0a0a; /* Darker background */
    color: #f5f5f5;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: white;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #ff4d4d, #f9cb28);
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-col p {
    color: #aaa;
    margin-bottom: 20px;
    font-size: 0.9rem;
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #ff4d4d, #f9cb28);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #aaa;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
    text-decoration: none;
}

.contact-info {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-info i {
    margin-right: 10px;
    color: #ff4d4d;
    width: 20px;
    text-align: center;
}

.contact-info div {
    margin-bottom: 12px;
    text-align: justify;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #777;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* Additional dark enhancements */
.footer-col ul {
    list-style: none;
    padding-left: 0;
}

.footer-col ul li::before {
    content: "•";
    color: #ff4d4d;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease forwards;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .property-content {
        grid-template-columns: 1fr;
    }
    
    .property-contact {
        grid-row: 2;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .dashboard-content {
        grid-template-columns: 1fr;
    }
    
    .dashboard-sidebar {
        order: 2;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .search-page-content {
        grid-template-columns: 1fr;
    }
    
    .properties-grid, .properties-list {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .property-highlights {
        grid-template-columns: 1fr;
    }
    
    .property-features ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .search-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .property-actions {
        flex-direction: column;
    }
}