* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Version: 2025-12-29-v2 - Veolia Design System Header */

:root {
    /* Veolia Official Brand Colors */
    --veolia-green: #00AB84;
    --veolia-dark-green: #008C6F;
    --veolia-light-green: #E6F7F3;
    --veolia-red: #E3000F;
    --veolia-blue: #0075BE;
    --veolia-navy: #003D5C;
    --veolia-dark-grey: #333333;
    --veolia-yellow: #FFD200;
    --gray-50: #FAFBFC;
    --gray-100: #F5F7FA;
    --gray-200: #E4E7EB;
    --gray-300: #CBD2D9;
    --gray-400: #9AA5B1;
    --gray-500: #7B8794;
    --gray-600: #616E7C;
    --gray-700: #52606D;
    --gray-800: #3E4C59;
    --gray-900: #1F2933;
    --white: #FFFFFF;
    --success: #00AB84;
    --warning: #FFA500;
    --danger: #E74C3C;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: var(--gray-50);
    color: var(--gray-900);
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Login Container */
.login-container {
    display: none;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--veolia-navy) 0%, var(--veolia-green) 100%);
    padding: 20px;
}

.login-box {
    background: var(--white);
    border-radius: 0;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 450px;
    overflow: hidden;
    border-top: 4px solid var(--veolia-green);
}

.login-header {
    background: var(--white);
    color: var(--gray-900);
    padding: 32px 32px 24px;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.veolia-logo-large {
    height: 32px;
    width: auto;
    display: inline-block;
    margin-bottom: 12px;
}

.login-header h2 {
    color: var(--veolia-navy);
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.login-subtitle {
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 400;
}

.login-tabs {
    display: flex;
    background: var(--gray-100);
}

.login-tab {
    flex: 1;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-600);
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
}

.login-tab:hover {
    background: var(--veolia-light-green);
    color: var(--veolia-green);
}

.login-tab.active {
    background: var(--white);
    color: var(--veolia-navy);
    border-bottom-color: var(--veolia-dark-grey);
}

.form-container {
    padding: 32px;
}

.btn-full {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

.error-message {
    background: #FFEBEE;
    color: var(--danger);
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 16px;
    font-size: 14px;
    display: none;
    border-left: 4px solid var(--danger);
}

.success-message {
    background: #E6F7F3;
    color: var(--veolia-dark-green);
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 16px;
    font-size: 14px;
    display: none;
    border-left: 4px solid var(--veolia-dark-grey);
}

.password-hint {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 12px;
    text-align: center;
    line-height: 1.4;
}

.user-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--veolia-light-green);
    border-radius: 4px;
    color: var(--veolia-navy);
    font-weight: 600;
    font-size: 13px;
    margin-right: 12px;
}

.user-icon {
    font-size: 16px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Google Sign-In Button */
.btn-google {
    background: white;
    color: #5F6368;
    border: 1px solid #DADCE0;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.btn-google:hover {
    background: #F8F9FA;
    border-color: #C6C9CC;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.google-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 24px 0 8px;
    color: var(--gray-500);
    font-size: 13px;
    font-weight: 500;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--gray-300);
}

.divider span {
    padding: 0 16px;
}

header {
    background: #000000;
    padding: 20px 40px;
    border-radius: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid var(--veolia-green);
}

header .header-left {
    flex: 1;
}

.logo-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 4px;
}

.veolia-logo {
    height: 32px;
    width: auto;
    display: inline-block;
}

h1 {
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

.subtitle {
    color: var(--gray-300);
    font-size: 14px;
    font-weight: 400;
}

.btn-primary {
    background: var(--veolia-navy);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: var(--veolia-dark-grey);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--white);
    color: var(--veolia-navy);
    border: 2px solid var(--veolia-dark-grey);
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: var(--veolia-light-green);
    border-color: var(--veolia-dark-green);
    color: var(--veolia-dark-green);
}

.btn-danger {
    background: var(--danger);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 13px;
}

.btn-danger:hover {
    background: #C0392B;
    transform: translateY(-1px);
}

.btn-edit {
    background: var(--warning);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 13px;
    margin-right: 8px;
}

.btn-edit:hover {
    background: #E67E00;
    transform: translateY(-1px);
}

.filters {
    background: var(--white);
    padding: 20px 24px;
    border-radius: 0;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    border-left: 3px solid var(--veolia-dark-grey);
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-group label {
    font-weight: 600;
    color: var(--veolia-navy);
    font-size: 13px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

select, input[type="text"] {
    padding: 10px 14px;
    border: 2px solid var(--gray-300);
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.2s ease;
    background: var(--white);
    color: var(--gray-900);
}

select:focus, input[type="text"]:focus {
    outline: none;
    border-color: var(--veolia-dark-grey);
    box-shadow: 0 0 0 3px rgba(51, 51, 51, 0.1);
}

select:hover, input[type="text"]:hover {
    border-color: var(--veolia-dark-grey);
}

.tabs {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
    flex-wrap: wrap;
    background: var(--white);
    padding: 0;
    border-radius: 0;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.tab {
    background: transparent;
    padding: 14px 24px;
    border-radius: 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s ease;
    color: var(--gray-700);
    border-bottom: 3px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1;
    text-align: center;
    min-width: 140px;
}

.tab:hover {
    background: var(--gray-100);
    color: var(--veolia-navy);
}

.tab.active {
    background: var(--white);
    color: var(--veolia-navy);
    border-bottom-color: var(--veolia-dark-grey);
}

.content {
    display: none;
}

.content.active {
    display: block;
}

.content > h2 {
    background: var(--white);
    padding: 16px 24px;
    margin-bottom: 20px;
    border-left: 4px solid var(--veolia-dark-grey);
    box-shadow: var(--shadow);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.card {
    background: var(--white);
    border-radius: 0;
    padding: 24px;
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
    border-left: 4px solid var(--veolia-dark-grey);
    position: relative;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--veolia-light-green);
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--veolia-navy);
}

.badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.aws {
    background: #FF9900;
    color: white;
}

.badge.google {
    background: #4285F4;
    color: white;
}

.badge.azure {
    background: #0078D4;
    color: white;
}

.badge.saas {
    background: var(--success);
    color: white;
}

.badge.onprem {
    background: var(--primary-blue);
    color: white;
}

.badge.chapter {
    background: var(--gray-700);
    color: white;
    font-size: 11px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 14px;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: var(--gray-600);
}

.info-value {
    color: var(--gray-900);
    text-align: right;
    font-weight: 500;
}

.status {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
}

.status.ok {
    background: var(--success);
    box-shadow: 0 0 0 2px rgba(0, 171, 132, 0.2);
}

.status.warning {
    background: var(--warning);
    box-shadow: 0 0 0 2px rgba(255, 165, 0, 0.2);
}

.status.error {
    background: var(--danger);
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

.status.pending {
    background: var(--gray-400);
    box-shadow: 0 0 0 2px rgba(154, 165, 177, 0.2);
}

.action-list {
    list-style: none;
    padding: 10px 0;
}

.action-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.action-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* Action and Feature Request Tables */
.action-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 13px;
}

.action-table thead {
    background: #f3f4f6;
}

.action-table th {
    padding: 8px 12px;
    text-align: left;
    font-weight: 600;
    color: #374151;
    border-bottom: 2px solid #e5e7eb;
}

.action-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: middle;
}

.action-table tbody tr:hover {
    background: #f9fafb;
}

.action-table tbody tr:last-child td {
    border-bottom: none;
}

/* Priority Badges */
.priority-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.priority-high {
    background: #fee2e2;
    color: #dc2626;
}

.priority-medium {
    background: #fef3c7;
    color: #d97706;
}

.priority-low {
    background: #dbeafe;
    color: #2563eb;
}

/* Roadmap priority indicators */
.roadmap-card.priority-high {
    border-left-width: 4px;
}

.roadmap-card.priority-low {
    opacity: 0.8;
}

.roadmap-card-priority {
    font-size: 10px;
    color: #6b7280;
    margin-top: 4px;
    text-transform: uppercase;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.stat-card {
    background: var(--white);
    padding: 28px 24px;
    border-radius: 0;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--veolia-dark-grey);
    transition: all 0.2s ease;
}

.stat-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    border-top-color: var(--veolia-dark-green);
}

.stat-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--veolia-green);
    margin-bottom: 8px;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    color: var(--gray-600);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.table-container {
    background: var(--white);
    border-radius: 0;
    padding: 24px;
    box-shadow: var(--shadow);
    overflow-x: auto;
    border-left: 4px solid var(--veolia-dark-grey);
}

.table-container h2 {
    color: var(--veolia-navy);
    margin-bottom: 20px;
    font-size: 20px;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

th {
    background: var(--veolia-navy);
    color: white;
    padding: 14px 16px;
    text-align: left;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

th:first-child {
    border-top-left-radius: 0;
}

th:last-child {
    border-top-right-radius: 0;
}

td {
    padding: 14px 16px;
    font-size: 14px;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-800);
}

tr:last-child td {
    border-bottom: none;
}

tr:hover {
    background: var(--veolia-light-green);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 61, 92, 0.75);
    backdrop-filter: blur(3px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 36px;
    border-radius: 0;
    width: 90%;
    max-width: 600px;
    box-shadow: var(--shadow-lg);
    border-left: 5px solid var(--veolia-dark-grey);
}

.modal-content h2 {
    color: var(--veolia-navy);
    margin-bottom: 28px;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.close {
    color: var(--gray-400);
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
    line-height: 1;
}

.close:hover,
.close:focus {
    color: var(--veolia-green);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--veolia-navy);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    width: 100%;
}

.form-buttons {
    margin-top: 28px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding-top: 20px;
    border-top: 2px solid var(--veolia-light-green);
}

/* Loading Spinner */
.loading {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 61, 92, 0.95);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.loading.active {
    display: flex;
}

.spinner {
    border: 6px solid rgba(255, 255, 255, 0.2);
    border-top: 6px solid var(--veolia-dark-grey);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading p {
    color: white;
    margin-top: 24px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-actions {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid var(--veolia-light-green);
    display: flex;
    gap: 8px;
}

/* Section Headers */
h2 {
    color: var(--veolia-navy);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

/* Footer */
.footer {
    background: var(--white);
    color: var(--gray-800);
    padding: 32px 0;
    margin-top: 60px;
    border-top: 3px solid var(--veolia-green);
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.veolia-logo-footer {
    height: 28px;
    width: auto;
    display: inline-block;
}

.footer-brand p {
    font-size: 13px;
    font-style: italic;
    color: var(--veolia-green);
    font-weight: 500;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    margin: 4px 0;
    font-size: 12px;
    color: var(--gray-600);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 12px;
    }

    .grid {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 20px;
    }

    .logo-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .veolia-logo {
        font-size: 14px;
        padding: 6px 12px;
    }

    header {
        flex-direction: column;
        text-align: left;
        padding: 20px;
    }

    header .header-left {
        margin-bottom: 16px;
        width: 100%;
    }

    #addSolutionBtn {
        width: 100%;
        justify-content: center;
    }
    
    .filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group label {
        margin-bottom: 4px;
    }

    .filter-group input,
    .filter-group select {
        width: 100%;
    }

    .tabs {
        flex-direction: column;
    }

    .tab {
        width: 100%;
        text-align: center;
        border-bottom: 2px solid var(--gray-200);
        border-left: 3px solid transparent;
    }

    .tab.active {
        border-bottom-color: transparent;
        border-left-color: var(--veolia-dark-grey);
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .table-container {
        padding: 16px;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 24px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand {
        flex-direction: column;
    }

    .footer-info {
        text-align: center;
    }
}

/* Roadmap Styles */
.roadmap-timeline {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow-x: auto;
}

.roadmap-filters {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.roadmap-filters label {
    font-size: 14px;
    color: var(--gray-700);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s;
}

.roadmap-filters label:hover {
    color: var(--veolia-green);
}

.roadmap-filters input[type="checkbox"] {
    margin-right: 6px;
    cursor: pointer;
    width: 16px;
    height: 16px;
}

#functionFilters {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

#functionFilters label {
    background: var(--gray-50);
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid var(--gray-200);
    font-size: 13px;
    transition: all 0.2s;
}

#functionFilters label:hover {
    background: var(--veolia-green);
    color: white;
    border-color: var(--veolia-green);
}

#functionFilters strong {
    margin-right: 10px;
}

.roadmap-container {
    width: 100%;
}

/* Timeline Grid */
.roadmap-timeline-grid {
    display: flex;
    flex-direction: column;
    min-width: fit-content;
}

.roadmap-header {
    display: grid;
    grid-template-columns: repeat(12, minmax(180px, 1fr));
    gap: 10px;
    margin-bottom: 10px;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
    padding: 10px 0;
}

.roadmap-month-header {
    text-align: center;
    padding: 14px 16px;
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    border-radius: 6px;
    transition: all 0.2s;
    white-space: nowrap;
}

.roadmap-month-header.current-month {
    background: linear-gradient(135deg, #00AB84 0%, #008C6F 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 171, 132, 0.3);
}

.roadmap-month-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.month-label {
    font-weight: 700;
    font-size: 14px;
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.month-name {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.month-year {
    font-size: 11px;
    opacity: 0.7;
    margin-top: 2px;
}

/* Timeline Lanes */
.roadmap-lanes {
    display: grid;
    grid-template-columns: repeat(12, minmax(180px, 1fr));
    gap: 10px;
    min-height: 400px;
}

.roadmap-month-lane {
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 6px;
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    transition: all 0.2s;
}

.roadmap-month-lane.current-month-lane {
    background: linear-gradient(180deg, #E6F7F3 0%, #F5F7FA 100%);
    border-color: #00AB84;
    box-shadow: 0 0 0 1px rgba(0, 171, 132, 0.1);
}

.roadmap-month-lane:hover {
    border-color: var(--veolia-dark-grey);
    background: white;
}

.month-items {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
}

.empty-month {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 12px;
    min-height: 60px;
}

.empty-month::before {
    content: '—';
    font-size: 20px;
}

/* Roadmap Cards */
.roadmap-card {
    background: white;
    border-left: 3px solid var(--veolia-dark-grey);
    border-radius: 4px;
    padding: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    cursor: pointer;
    display: flex;
    gap: 8px;
    align-items: start;
}

.roadmap-card:hover {
    transform: translateX(3px) translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.roadmap-card.feature {
    border-left-color: #00AB84;
}

.roadmap-card.action {
    border-left-color: #003D5C;
}

.roadmap-card-icon {
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
}

.roadmap-card-content {
    flex: 1;
    min-width: 0;
}

.roadmap-card-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.3;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.roadmap-card-solution {
    font-size: 10px;
    color: var(--gray-600);
    background: var(--gray-100);
    padding: 2px 6px;
    border-radius: 3px;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.month-count {
    text-align: center;
    font-size: 11px;
    color: var(--gray-600);
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--gray-200);
    font-weight: 600;
}

/* Legend */
.roadmap-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    padding: 15px;
    background: var(--gray-50);
    border-radius: 6px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-700);
}

.legend-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
}

.legend-total {
    font-weight: 700;
    color: var(--veolia-navy);
}

/* Scrollbar styling for month lanes */
.month-items::-webkit-scrollbar {
    width: 4px;
}

.month-items::-webkit-scrollbar-track {
    background: transparent;
}

.month-items::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 2px;
}

.month-items::-webkit-scrollbar-thumb:hover {
    background: var(--gray-400);
}

/* VOC Entry Styles */
.voc-entry input {
    border: 1px solid var(--gray-300);
    border-radius: 4px;
    font-size: 14px;
}

.voc-entry label {
    color: var(--gray-700);
    font-weight: 500;
}

/* Form textarea styles */
textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid var(--gray-200);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    resize: vertical;
    transition: border-color 0.2s;
}

textarea:focus {
    outline: none;
    border-color: var(--veolia-dark-grey);
}

/* Enhanced form sections */
.form-group h3 {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--veolia-dark-grey);
}

@media (max-width: 480px) {
    h1 {
        font-size: 18px;
    }

    .subtitle {
        font-size: 12px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 18px;
        font-size: 12px;
    }

    .card {
        padding: 16px;
    }

    .card-title {
        font-size: 16px;
    }

    .stat-value {
        font-size: 32px;
    }

    .veolia-logo {
        font-size: 12px;
        padding: 6px 10px;
        letter-spacing: 1px;
    }

    .veolia-logo-footer {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .roadmap-timeline-grid {
        min-width: 100%;
    }
    
    .roadmap-header {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .roadmap-lanes {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .roadmap-month-header:nth-child(n+5),
    .roadmap-month-lane:nth-child(n+5) {
        display: none;
    }
    
    .roadmap-legend {
        flex-direction: column;
        gap: 10px;
    }
}
