.SWP .results-section {
    /* background: #fff; */
    padding: 30px;
    border-radius: 15px;
    /* border: 2px solid #e9ecef; */
}

.SWP .result-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
}

.SWP .result-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.SWP .result-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.SWP .schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.SWP .schedule-table th {
    background: linear-gradient(to right, #667eea, #764ba2);
    color: white;
    padding: 15px 10px;
    text-align: center;
    font-weight: 600;
}

.SWP .schedule-table td {
    padding: 12px 10px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.SWP .schedule-table tbody tr:hover {
    background-color: #f8f9fa;
}

.SWP .chart-container {
    margin-top: 30px;
    height: 300px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

@media (max-width: 768px) {
    .content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
}

.SWP .error {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 5px;
    display: none;
}

.SWP .highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
}