/* Enhanced Modal Styles */
.modal-lg {
    max-width: 80vw !important;
}

.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

.project-detail h5 {
    color: #2c3e50;
    font-weight: 600;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.project-detail .table {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.project-detail .table thead th {
    background-color: #f8f9fa;
    border: none;
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
}

.project-detail .bg-light {
    background-color: #f8f9fa !important;
    border-left: 4px solid var(--optimaly-blue);
    font-weight: 500;
}

.project-detail .alert {
    border: none;
    border-left: 4px solid #ffc107;
}

.project-detail .list-unstyled li {
    padding: 3px 0;
    border-bottom: 1px solid #f8f9fa;
}

.project-detail .list-unstyled li:last-child {
    border-bottom: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .modal-lg {
        max-width: 95vw !important;
        margin: 0.5rem auto;
    }
    
    .project-detail .table-responsive {
        border-radius: 8px;
        border: 1px solid #dee2e6;
    }
    
    .project-detail h5 {
        font-size: 1.1rem;
    }
}