/* Sistem Avizări - Custom CSS */

body {
    background: #f8f9fa;
    font-size: 14px;
    overscroll-behavior-y: none;
}

.navbar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.chart-container {
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.chart-title {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
}

.filter-section {
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.filter-section h6 {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
}

.form-check-label {
    font-size: 13px;
    margin-left: 4px;
    cursor: pointer;
}

.list-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    height: 500px;
    display: flex;
    flex-direction: column;
}

.list-header {
    padding: 20px 20px 15px 20px;
    border-bottom: 2px solid #e9ecef;
    flex-shrink: 0;
}

.list-title {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    text-align: center;
    margin-bottom: 12px;
}

.month-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.month-nav-btn {
    padding: 8px 16px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    color: #495057;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}

.month-nav-btn:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.month-nav-btn.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.list-content {
    flex: 1;
    overflow-y: auto;
    padding: 15px 20px;
}

.list-content::-webkit-scrollbar {
    width: 8px;
}

.list-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.list-content::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 10px;
}

.avizare-item {
    padding: 12px;
    border-bottom: 1px solid #e9ecef;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 12px;
}

.avizare-item:last-child {
    border-bottom: none;
}

.avizare-item:hover {
    background: #f8f9fa;
}

.avizare-date {
    font-weight: 600;
    color: #667eea;
    font-size: 13px;
}

.avizare-badge {
    font-size: 10px;
    padding: 3px 8px;
}

.add-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 1000;
}

.add-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}
