.result-download-table {
    max-width: 900px;
    margin: 30px auto;
    background: #fefce8;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow-x: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.result-download-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.result-download-table th,
.result-download-table td {
    text-align: center;
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-size: 16px;
}

.result-download-table th {
    background-color: #f3e8ff;
    color: #4a148c;
    font-weight: 700;
}

.result-download-table tr:nth-child(even) {
    background-color: #fcfdfc;
}

.download-btn {
    background-color: #7D3495;
    color: white;
    border: none;
    padding: 8px 16px;
    font-size: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.download-btn:hover {
    background-color: #4a1d58;
}

@media (max-width: 600px) {

    .result-download-table th,
    .result-download-table td {
        font-size: 14px;
        padding: 10px;
    }

    .download-btn {
        font-size: 14px;
        padding: 6px 12px;
    }
}