/* Custom styles for the application */
.logo_img img {
    width: 100px;
    height: auto;
    max-width: 100%;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .logo_img img {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .logo_img img {
        width: 150px;
    }
}

/* Sticky header styling */
.o_land_header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
}

.header_area {
    background-color: #fff;
}

/* Enhanced navigation styling for real estate managers */
.header__wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
}

.header__left {
    justify-self: start;
}

.main_menu {
    justify-self: center;
}

.header_top_area_right {
    justify-self: end;
}

.main_menu ul li a {
    color: #333;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.main_menu ul li a:hover {
    color: #667eea;
    background-color: rgba(102, 126, 234, 0.1);
}

/* Fancy Auth Buttons Styling */
.auth_buttons_container {
    align-items: center;
}

.auth_buttons_container .btn {
    font-weight: 600;
    font-size: 14px;
    border: 2px solid;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.auth_buttons_container .btn-outline-primary {
    background: linear-gradient(45deg, #ffffff, #f8f9fa);
    border-color: #007bff;
    color: #007bff;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
}

.auth_buttons_container .btn-outline-primary:hover {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

/* Reusable gradient button class */
.btn-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 2px solid transparent;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.btn-gradient:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.5);
}

.auth_buttons_container .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 2px solid transparent;
    color: white;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.auth_buttons_container .btn-primary:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.5);
}

.auth_buttons_container .btn i {
    transition: transform 0.3s ease;
}

.auth_buttons_container .btn:hover i {
    transform: scale(1.1);
}

/* Mobile auth buttons styling */
.mobile_auth_buttons .btn {
    width: 100%;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile_auth_buttons .btn-outline-primary {
    border: 2px solid #667eea;
    color: #667eea;
    background: transparent;
}

.mobile_auth_buttons .btn-outline-primary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-1px);
}

/* Responsive adjustments for auth buttons */
@media (max-width: 768px) {
    .auth_buttons_container {
        flex-direction: column;
        gap: 8px !important;
    }
    
    .auth_buttons_container .btn {
        font-size: 12px;
        padding: 6px 12px !important;
    }
}