/* Model Info Update Screen Styles */

/* Dashboard Container */
.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: var(--dark);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Info Section */
.info-section {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #3182ce;
}

.info-section h2 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 18px;
}

.info-section p {
    color: #e2e8f0;
    margin-bottom: 15px;
}

/* Action Section */
.action-section {
    margin-top: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    color: #ffffff;
    border: 1px solid #3182ce;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2c5282 0%, #2a4365 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.3);
}

/* Success Message */
.success-message {
    background: linear-gradient(135deg, #22543d 0%, #1a202c 100%);
    border-radius: 8px;
    padding: 15px;
    border-left: 4px solid #38a169;
}

.success-message p {
    color: #ffffff;
    margin: 0;
    font-weight: 500;
}

/* Results Section */
.results-section {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #38a169;
}

.results-section h2 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 18px;
}

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

.result-item {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    border: 1px solid #404040;
}

.result-item.success {
    border-color: #38a169;
}

.result-item.error {
    border-color: #e53e3e;
}

.result-item .label {
    display: block;
    color: #b0b0b0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.result-item .value {
    display: block;
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
}

/* Error List */
.error-list {
    background: linear-gradient(135deg, #742a2a 0%, #1a202c 100%);
    border-radius: 6px;
    padding: 15px;
    border-left: 4px solid #e53e3e;
}

.error-list h3 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 16px;
}

.error-list ul {
    margin: 0;
    padding-left: 20px;
}

.error-list li {
    color: #e2e8f0;
    margin-bottom: 5px;
}

/* Models Section */
.models-section {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid #805ad5;
}

.models-section h2 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 18px;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    background: var(--dark);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

th {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: #ffffff !important;
    padding: 16px 12px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #4a5568;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

td {
    padding: 12px;
    border-bottom: 1px solid #2d3748;
    color: #e2e8f0;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

tr {
    background: var(--dark);
    transition: all 0.2s ease;
}

tr:hover {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Status Indicators */
.status {
    font-weight: bold;
    font-size: 16px;
}

.status.complete {
    color: #38a169;
}

.status.incomplete {
    color: #e53e3e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-container {
        padding: 15px;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .result-item .value {
        font-size: 20px;
    }
    
    table {
        font-size: 12px;
    }
    
    th, td {
        padding: 8px 6px;
    }
}

/* Scrollbar Styling */
.dashboard-container::-webkit-scrollbar {
    width: 8px;
}

.dashboard-container::-webkit-scrollbar-track {
    background: #1a202c;
}

.dashboard-container::-webkit-scrollbar-thumb {
    background: #4a5568;
    border-radius: 4px;
}

.dashboard-container::-webkit-scrollbar-thumb:hover {
    background: #718096;
} 