.rircontest-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
    color: #eee;
    font-family: 'Inter', sans-serif;
}

.rircontest-wrapper h2 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 25px;
    border-bottom: 1px solid #444;
    padding-bottom: 8px;
}

.rircontest-wrapper table {
    width: 100%;
    border-collapse: collapse;
    background: #111;
    border: 1px solid #333;
}

.rircontest-wrapper thead th {
    background-color: #1b1b1b;
    color: #ccc;
    font-weight: 600;
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #444;
}

.rircontest-wrapper tbody td {
    padding: 10px;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.rircontest-wrapper tbody tr:hover {
    background-color: #1a1a1a;
}

.rircontest-wrapper .button,
.rircontest-wrapper .button.button-primary {
    padding: 6px 12px;
    background-color: #007c2e;
    color: white;
    text-decoration: none;
    border-radius: 3px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.rircontest-wrapper .button.button-primary:hover {
    background-color: #00993d;
}

.rircontest-wrapper .button.disabled {
    background-color: #333;
    color: #999;
    cursor: not-allowed;
}

@media (max-width: 600px) {
    .rircontest-wrapper table, .rircontest-wrapper thead, .rircontest-wrapper tbody, .rircontest-wrapper th, .rircontest-wrapper td, .rircontest-wrapper tr {
        display: block;
    }

    .rircontest-wrapper thead {
        display: none;
    }

    .rircontest-wrapper tr {
        margin-bottom: 15px;
        border: 1px solid #333;
        border-radius: 5px;
        padding: 10px;
        background-color: #111;
    }

    .rircontest-wrapper td {
        padding: 8px 10px;
        border: none;
        display: flex;
        justify-content: space-between;
    }

    .rircontest-wrapper td::before {
        content: attr(data-label);
        font-weight: bold;
        flex: 1;
        color: #aaa;
    }
}
