/* General */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

/* Navbar */
.navbar {
    padding: 15px 0;
}

.navbar-brand {
    font-size: 1.4rem;
}

/* Profile Button */
.profile-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background-color: white;
    border: 2px solid #0d6efd;
    color: #0d6efd;
    transition: all 0.3s ease-in-out;
}

.profile-btn:hover {
    background-color: #0d6efd;
    color: white;
}

/* Dropdown Menu */
.dropdown-menu {
    border-radius: 12px;
    padding: 10px 0;
    border: none;
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    color: #333;
}

.dropdown-item:hover {
    background-color: #f1f1f1;
    color: #0d6efd;
}

.upgrade-btn {
    font-weight: bold;
    color: #0d6efd;
}

/* Featured Properties */
.property-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}