/* AB LUXURY Villa Estate Management - Custom Styles */

/* Additional styling for enhanced user experience */
.estate-brand {
    font-family: 'Georgia', serif;
    font-weight: bold;
}

.financial-highlight {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    display: inline-block;
}

/* Enhanced table styling */
.table-estate {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 0.5rem;
    overflow: hidden;
}

.table-estate th {
    background-color: #f8f9fa;
    border: none;
    font-weight: 600;
}

/* Enhanced button animations */
.btn-estate {
    transition: all 0.3s ease;
    border-radius: 0.5rem;
}

.btn-estate:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .financial-highlight {
        font-size: 0.9rem;
        padding: 0.3rem 0.8rem;
    }
    
    .btn-estate {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}