/* Client Dashboard Styles */
.client-dashboard {
    margin: 0;
    padding: 0;
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="water" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23water)"/></svg>');
    opacity: 0.1;
}

.search-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.search-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: none;
}

.search-input-group .input-group-text {
    border: none;
    border-radius: 10px 0 0 10px;
}

.search-input-group .form-control {
    border: 2px solid #e9ecef;
    border-left: none;
    border-right: none;
    padding: 0.75rem 1rem;
}

.search-input-group .form-control:focus {
    border-color: #667eea;
    box-shadow: none;
}

.search-input-group .btn {
    border-radius: 0 10px 10px 0;
    border: none;
}

.status-section {
    padding: 3rem 0;
    background: white;
}

.charts-section {
    padding: 3rem 0 4rem 0;
    background: #f8f9fa;
}

.section-title {
    color: #2c3e50;
    font-weight: 600;
    border-bottom: 3px solid #667eea;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.status-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.status-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.status-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.status-value {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.status-value.good { color: #28a745; }
.status-value.warning { color: #ffc107; }
.status-value.danger { color: #dc3545; }

.chart-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: none;
}

.chart-card .card-header {
    background: transparent;
    border-bottom: 1px solid #e9ecef;
    border-radius: 15px 15px 0 0;
    padding: 1.5rem;
}

.info-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border: none;
    margin-top: 2rem;
}

.water-icon {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .search-section {
        padding: 2rem 0;
    }
    
    .status-section,
    .charts-section {
        padding: 2rem 0;
    }
}