@charset "utf-8";
.music-results-container {
    width: 100%;
    max-width: 1000px;
    margin: 20px auto;
    overflow-x: auto;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background: #fff;
    padding: 20px 8px 8px 8px;
}

.table-title {
    text-align: center;
    color: #d81b60;
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.results-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 800px;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #444;
}

.results-table th, .results-table td {
    padding: 12px 8px;
    text-align: center;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
}

.results-table thead th {
    background-color: #fce4ec;
    color: #d81b60;
    font-size: 1em;
    font-weight: bold;
    border-bottom: 4px solid #f8bbd0;
}

.results-table thead th:first-child {
    border-top-left-radius: 15px;
    background-color: #bbdefb;
    color: #0d47a1;
    border-bottom-color: #90caf9;
}

.results-table thead th:last-child {
    border-top-right-radius: 15px;
}

.results-table tbody tr:nth-child(odd) th {
    background-color: #bbdefb;
    color: #0d47a1;
}

.results-table tbody tr:nth-child(even) th {
    background-color: #e3f2fd;
    color: #1565c0;
}

.results-table tbody th {
    font-size: 1.2em;
    font-weight: 800;
    line-height: 1.2;
}

.era-year {
    display: block;
    font-size: 0.65em;
    font-weight: normal;
    margin-top: 2px;
}

.results-table tbody tr:nth-child(even) td {
    background-color: #fff3e0;
}

.results-table tbody tr:nth-child(odd) td {
    background-color: #fff;
}

.results-table tbody tr:last-child th {
    border-bottom-left-radius: 15px;
}

.results-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 15px;
}

.results-table tr:hover td {
    background-color: #e1f5fe !important;
}

.text-link {
    color: #2e7d32;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    border: 2px solid #2e7d32;
    transition: all 0.2s ease;
    font-size: 0.9em;
    background-color: #fff;
}

.text-link:hover {
    background-color: #2e7d32;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(46, 125, 50, 0.2);
}

.no-data {
    color: #bbb;
    font-size: 0.9em;
}

.font-small {
    font-size: 0.75em;
}