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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

.container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styles */
.sidebar {
    width: 200px;
    background: linear-gradient(135deg, #FFD700, #FFC107);
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.logo-image {
    width: 100%;
    margin-top: 47%;
    object-fit: contain;
    flex-shrink: 0;
}

.logo h2 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.1;
    margin: 0;
    text-align: left;
}

.customer-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: end;
    text-align: left;
}

.customer-info h3 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
    margin-bottom: 15px;
}

.customer-info p {
    font-size: 13px;
    color: #333;
    font-weight: 500;
    margin: 0;
}

.copyright {
    margin-top: auto;
    text-align: left;
}

.copyright p {
    font-size: 11px;
    color: #333;
    opacity: 0.7;
    margin: 0;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 20px 30px;
    background-color: #f8f9fa;
    margin-left: 200px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.search-bar {
    position: relative;
    width: 300px;
}

.search-bar i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.search-bar input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 25px;
    background-color: white;
    font-size: 14px;
}

.header-icons {
    display: flex;
    gap: 20px;
}

.header-icons i {
    font-size: 18px;
    color: #;
    cursor: pointer;
    transition: color 0.3s;
}

.header-icons i:hover {
    color: #333;
}

/* Project Info */
.project-info {
    margin-bottom: 40px;
}

.project-badge {
    background-color: #FFD700;
    color: #333;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.project-info h1 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.client-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.client-label {
    font-size: 14px;
    color: #;
    font-weight: 500;
}

.client-name {
    font-size: 16px;
    color: #e74c3c;
    font-weight: 500;
}

/* Timeline Section */
.timeline-section {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.timeline-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.date-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #;
    font-size: 14px;
}

.timeline-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.timeline-item {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    background-color: #fafafa;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.timeline-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.timeline-item.completed {
    border-left: 4px solid #28a745;
    background: linear-gradient(135deg, #f8fff9, #fafafa);
}

.timeline-item.ongoing {
    border-left: 4px solid #ffc107;
    background: linear-gradient(135deg, #fffef8, #fafafa);
}

.timeline-item.pending {
    border-left: 4px solid #6c757d;
    background: linear-gradient(135deg, #f8f9fa, #fafafa);
}

.timeline-header-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    cursor: pointer;
}

.timeline-title-section {
    flex: 1;
}

.timeline-title-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.timeline-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.timeline-dates {
    font-size: 13px;
    color: #;
    font-weight: 500;
}

.timeline-team {
    font-size: 12px;
    color: #888;
    font-style: italic;
}

.timeline-status-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    /* text-transform: uppercase; */
    letter-spacing: 0.5px;
}

.status-badge.completed {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-badge.ongoing {
    background-color: #ffd700;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.status-badge.pending {
    background-color: gray;
    color: #ffffff;
    border: 1px solid gray;
}

.timeline-toggle {
    color: #999;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    font-size: 14px;
}

.timeline-toggle:hover {
    color: #333;
    transform: rotate(180deg);
}

.timeline-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 15px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.timeline-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 12px;
    color: #;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.info-value.percentage {
    color: #e74c3c;
    font-size: 16px;
}

.info-value.priority-high {
    color: #dc3545;
}

.info-value.priority-medium {
    color: #ffc107;
}

.info-value.priority-low {
    color: #28a745;
}

.progress-section {
    margin: 10px 0;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background-color: #e9ecef;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.progress-fill {
    height: 100%;
    transition: width 0.6s ease;
    position: relative;
}

.progress-fill.completed {
    background: linear-gradient(90deg, #28a745, #20c997);
}

.progress-fill.ongoing {
    background: linear-gradient(90deg, #ffc107, #fd7e14);
}

.progress-fill.pending {
    background: linear-gradient(90deg, #6c757d, #495057);
}

.progress-indicator {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: white;
    font-weight: bold;
}

.timeline-deliverables {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 16px;
    border: 1px solid #e9ecef;
}

.timeline-deliverables h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.timeline-deliverables h4:before {
    content: "📋";
    font-size: 16px;
}

.timeline-deliverables ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.timeline-deliverables li {
    font-size: 13px;
    color: #555;
    padding: 6px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 8px;
}

.timeline-deliverables li:last-child {
    border-bottom: none;
}

.deliverable-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.deliverable-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.deliverable-progress {
    flex: 1;
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.deliverable-progress-fill {
    height: 100%;
    transition: width 0.6s ease;
}

.deliverable-progress-fill.completed {
    background: linear-gradient(90deg, #28a745, #20c997);
    width: 100%;
}

.deliverable-progress-fill.ongoing {
    background: linear-gradient(90deg, #ffc107, #fd7e14);
    width: 65%;
}

.deliverable-progress-fill.pending {
    background: linear-gradient(90deg, #6c757d, #495057);
    width: 0%;
}



/* Timeline Overview Card Styles */
.timeline-overview-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.overview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.overview-header h3 {
    margin: 0;
    color: #333;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.timeline-stats {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.timeline-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.timeline-stats .stat-item i {
    color: #ffd700;
    font-size: 16px;
}

.gantt-summary {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.gantt-header {
    display: grid;
    grid-template-columns: 2fr 3fr 1fr 1.2fr;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.gantt-header > div {
    padding: 12px 16px;
    border-right: 1px solid #e0e0e0;
}

.gantt-header > div:last-child {
    border-right: none;
}

.gantt-row {
    display: grid;
    grid-template-columns: 2fr 3fr 1fr 1.2fr;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
    transition: background-color 0.2s ease;
}

.gantt-row:hover {
    background-color: #f8f9fa;
}

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

.gantt-row > div {
    padding: 12px 16px;
    border-right: 1px solid #f0f0f0;
}

.gantt-row > div:last-child {
    border-right: none;
}

.phase-name {
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.timeline-bar {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.timeline-track {
    flex: 1;
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.timeline-fill {
    height: 100%;
    border-radius: 4px;
    position: absolute;
    top: 0;
    transition: width 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.timeline-fill.completed {
    background: linear-gradient(90deg, #28a745, #20c997);
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.3);
}

.timeline-fill.ongoing {
    background: linear-gradient(90deg, #ffd700, #17a2b8);
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.3);
    position: relative;
}

.timeline-fill.ongoing::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 35%;
    background: linear-gradient(90deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
    border-radius: 0 4px 4px 0;
}

.timeline-fill.pending {
    background: gray;
    border: 3px solid gray;
    opacity: 0.7;
}

.progress-overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
    z-index: 1;
}

.timeline-track {
    position: relative;
}

.timeline-track::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    bottom: -2px;
    background: transparent;
    border-radius: 6px;
    transition: box-shadow 0.2s ease;
}

.gantt-row:hover .timeline-track::before {
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}

.timeline-dates {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    min-width: 80px;
    text-align: left;
    padding: 2px 6px;
}

.progress-value {
    font-weight: 600;
    color: #333;
    text-align: center;
}

.overview-footer {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px;
    border: 1px solid #e0e0e0;
}

.milestone-indicators {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.milestone-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-weight: 500;
}

.milestone-item i {
    color: #ffc107;
    font-size: 16px;
}

.milestone-date {
    color: #;
    font-size: 14px;
    font-weight: 500;
    background: white;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

/* Responsive adjustments for timeline overview */
@media (max-width: 768px) {
    .gantt-header,
    .gantt-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .gantt-header > div,
    .gantt-row > div {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 8px 12px;
    }
    
    .gantt-header > div:last-child,
    .gantt-row > div:last-child {
        border-bottom: none;
    }
    
    .timeline-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    
    .timeline-dates {
        text-align: left;
        min-width: auto;
    }
    
    .milestone-indicators {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
}

/* Quick Access Section */
.quick-access {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.quick-access-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 16px;
}

.quick-access-header h3 {
    margin: 0;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

.file-stats {
    display: flex;
    gap: 20px;
    align-items: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #;
    font-size: 14px;
}

.stat-item i {
    color: #ffd700;
    font-size: 16px;
}

.quick-access-controls {
    display: flex;
    gap: 12px;
    align-items: center;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box i {
    position: absolute;
    left: 12px;
    color: #;
    font-size: 14px;
}

.search-box input {
    padding: 8px 12px 8px 36px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    width: 200px;
    outline: none;
    transition: border-color 0.3s;
}

.search-box input:focus {
    border-color: #ffd700;
}

.view-options {
    display: flex;
    gap: 4px;
    background: #f8f9fa;
    border-radius: 6px;
    padding: 2px;
}

.view-btn {
    background: transparent;
    border: none;
    padding: 6px 8px;
    border-radius: 4px;
    cursor: pointer;
    color: #;
    transition: all 0.3s;
}

.view-btn.active {
    background: white;
    color: #ffd700;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.view-btn:hover {
    color: #ffd700;
}

.upload-btn {
    background: #ffd700;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.3s;
}

.upload-btn:hover {
    background: #0056b3;
}

.file-list-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr 1fr;
    gap: 16px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #;
    font-size: 14px;
}

.header-item {
    display: flex;
    align-items: center;
}

/* File List */
.file-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Grid View (default) */
.file-list.grid-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.file-list.grid-view .file-item {
    display: flex;
    flex-direction: column;
    padding: 20px;
    text-align: center;
    min-height: 180px;
    justify-content: space-between;
}

.file-list.grid-view .file-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    font-size: 24px;
}

.file-list.grid-view .file-info {
    align-items: center;
    text-align: center;
    margin-bottom: 12px;
}

.file-list.grid-view .file-name {
    font-size: 16px;
    margin-bottom: 4px;
}

.file-list.grid-view .file-type {
    font-size: 13px;
}

.file-list.grid-view .file-size,
.file-list.grid-view .file-date {
    font-size: 12px;
    color: #;
    text-align: center;
}

.file-list.grid-view .file-actions {
        justify-content: center;
        margin-top: 8px;
    }

    /* Mobile responsiveness for grid view */
    @media (max-width: 768px) {
        .file-list.grid-view {
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 12px;
        }
        
        .file-list.grid-view .file-item {
            min-height: 160px;
            padding: 16px;
        }
        
        .file-list.grid-view .file-icon {
            width: 50px;
            height: 50px;
            font-size: 20px;
        }
    }
    
    @media (max-width: 480px) {
        .file-list.grid-view {
            grid-template-columns: 1fr;
            gap: 8px;
        }
        
        .file-list.grid-view .file-item {
            min-height: 140px;
            padding: 12px;
        }
    }

    /* List View */
.file-list.list-view {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.file-list.list-view .file-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr 1fr;
    gap: 16px;
    align-items: center;
    padding: 16px;
    min-height: auto;
}

.file-list.list-view .file-icon {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    font-size: 18px;
}

.file-list.list-view .file-info {
    text-align: left;
    align-items: flex-start;
}

.file-list.list-view .file-name {
    font-size: 14px;
}

.file-list.list-view .file-type {
    font-size: 12px;
}

.file-list.list-view .file-size,
.file-list.list-view .file-date {
    text-align: left;
}

.file-list.list-view .file-actions {
    justify-content: flex-end;
}

.file-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr 1fr;
    gap: 16px;
    align-items: center;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.file-item:hover {
    background: #e9ecef;
    border-color: #ffd700;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.1);
}

.file-item[data-file-id] {
    cursor: pointer;
}

.file-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    margin-right: 12px;
    flex-shrink: 0;
}

.file-icon.animation {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.file-icon.design {
    background: linear-gradient(135deg, #a55eea, #8b5cf6);
}

.file-icon.tutorial {
    background: linear-gradient(135deg, #26de81, #20bf6b);
}

.file-icon.brand {
    background: linear-gradient(135deg, #fd79a8, #e84393);
}

.file-icon.resume {
    background: linear-gradient(135deg, #00b894, #00a085);
}

.file-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.file-name {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-meta {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.file-type {
    color: #;
    font-size: 12px;
    background: #e9ecef;
    padding: 2px 6px;
    border-radius: 4px;
}

.file-extension {
    color: #ffd700;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.file-status {
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}

.file-status:contains("✓") {
    background: #d4edda;
    color: #155724;
}

.file-status:contains("⚡") {
    background: #ffd700;
    color: #856404;
}

.file-size {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.size-value {
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.size-bar {
    width: 100%;
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    overflow: hidden;
}

.size-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffd700, #0056b3);
    border-radius: 2px;
    transition: width 0.3s;
}

.file-date {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.date-value {
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.time-value {
    color: #;
    font-size: 12px;
}

.file-actions {
    display: flex;
    gap: 4px;
    justify-content: start;
}

.action-btn {
    background: transparent;
    border: none;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    color: #;
    transition: all 0.3s;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.action-btn:hover {
    background: #ffd700;
    color: white;
    transform: scale(1.1);
}

.action-btn.edit:hover {
    background: #28a745;
}

.action-btn.download:hover {
    background: #17a2b8;
}

.action-btn.share:hover {
    background: #ffc107;
    color: #333;
}

.action-btn.delete:hover {
    background: #dc3545;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .timeline-grid {
        grid-template-columns: 1fr;
    }
    
    .file-list-header {
        grid-template-columns: 2fr 1fr 1fr 1fr 0.8fr;
    }
    
    .file-item {
        grid-template-columns: 2fr 1fr 1fr 1fr 0.8fr;
    }
}

@media (max-width: 992px) {
    .quick-access-header {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .file-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .quick-access-controls {
        flex-direction: column;
        gap: 12px;
    }
    
    .search-box {
        width: 100%;
    }
    
    .search-box input {
        width: 100%;
    }
    
    .file-list-header {
        grid-template-columns: 2fr 1fr 1fr;
        font-size: 12px;
    }
    
    .file-item {
        grid-template-columns: 2fr 1fr 1fr;
        padding: 12px;
    }
    
    .header-item:nth-child(4),
    .header-item:nth-child(5) {
        display: none;
    }
    
    .file-date,
    .file-actions {
        display: none;
    }
    
    .file-name-column {
        min-width: 0;
    }
    
    .file-name {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        height: auto;
        padding: 20px;
        position: relative;
    }
    
    .main-content {
        margin: 0px;
    }
    
    .header {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .search-bar {
        width: 100%;
    }
    
    .quick-access {
        padding: 16px;
        margin: 0 -15px;
        border-radius: 0;
    }
    
    .quick-access-header h3 {
        font-size: 16px;
    }
    
    .file-stats {
        gap: 12px;
    }
    
    .stat-item {
        font-size: 12px;
    }
    
    .view-options {
        justify-content: center;
    }
    
    .upload-btn {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
    }
    
    .file-list-header {
        grid-template-columns: 1fr 80px;
        padding: 8px 12px;
        font-size: 11px;
    }
    
    .header-item:nth-child(2),
    .header-item:nth-child(3),
    .header-item:nth-child(4) {
        display: none;
    }
    
    .header-item:last-child {
        text-align: center;
    }
    
    .file-item {
        grid-template-columns: 1fr 80px;
        gap: 8px;
        padding: 10px;
    }
    
    .file-info,
    .file-size,
    .file-date {
        display: none;
    }
    
    .file-name-column {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    
    .file-name {
        font-size: 14px;
        font-weight: 600;
    }
    
    .file-name-column::after {
        /* content: attr(data-type) " • " attr(data-size); */
        font-size: 11px;
        color: #;
        font-weight: normal;
    }
    
    .file-actions {
        flex-direction: column;
        gap: 4px;
        align-items: center;
    }
    
    .action-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .quick-access {
        padding: 12px;
    }
    
    .quick-access-header {
        gap: 12px;
    }
    
    .file-stats {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .file-item {
        padding: 10px;
    }
    
    .file-name {
        font-size: 10px;
        line-height: 1.3;
    }
    .header-item{
        font-size: 12px;
    }
    .action-btn {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
    



    .logo {
        margin-bottom: 28px;
    }
    
    .logo-image {
        margin-top: 0px;
        width: 38%;
    }
    
    .customer-info {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        gap: 16px;
    }
    
    .copyright {
        margin-top: 0;
        flex-shrink: 0;
    }
    
    .footer-logo {
        width: 19% !important;
        margin-bottom: 0% !important;
        margin-top: 11px;
    }
}
.footer-logo{
       
    width: 60%;
    margin-bottom: 7%;
}

/* File Links Styling */
.file-links {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.file-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    text-decoration: none;
    color: #495057;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
    max-width: fit-content;
}

.file-link:hover {
    background-color: #e9ecef;
    border-color: #dee2e6;
    color: #212529;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.file-link i {
    font-size: 14px;
    color: #dc3545;
}

.file-link:hover i {
    color: #c82333;
}

/* Project Overview Styling */
.project-overview {
  background: linear-gradient(135deg, #d7d4c5 0%, #ffd700 100%);
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
    color: white;
}

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

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.overall-progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.overall-progress-bar .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Reports Section Styling */
.reports-section {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid #e9ecef;
}

.reports-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.reports-section h4:before {
    content: "📄";
    font-size: 16px;
}

.report-categories {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.report-category {
    background-color: white;
    border-radius: 6px;
    padding: 12px;
    border: 1px solid #e9ecef;
}

.report-category h5 {
    font-size: 13px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 4px;
}

.report-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
