

.main__listbox__list{
    height: 80px;
    width: 80%;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.18) 100%);
    box-shadow: 0 14px 28px rgba(15, 54, 104, 0.2);
    backdrop-filter: blur(8px);
    flex-shrink: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.main__listbox__list:hover{
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(15, 54, 104, 0.25);
}

.main__listbox__list [data-field]{
    cursor: text;
    user-select: text;
    outline: none;
    transition: box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    border-radius: 10px;
}

.main__listbox__list [data-field]:focus,
.main__listbox__list [data-field].is-editing{
    background-color: rgba(79, 124, 255, 0.12);
    box-shadow: inset 0 -2px 0 rgba(79, 124, 255, 0.4), 0 0 0 1px rgba(79, 124, 255, 0.25);
    color: #0f3163;
}

.main__listbox__list__name{
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    color: #143861;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.1px;
    padding-left: 6px;
}

.main__listbox__list__time{
    width: 20%;
    height: 100%;

    align-items: center;
    color: #1a4270;

    display: flex;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.main__listbox__list__score{
    width: 20%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    color: #1a4270;   
    font-weight: 600;
}

.main__listbox__list__name{
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.main__listbox__list__name,
.main__listbox__list__time,
.main__listbox__list__score{
    position: relative;
    padding-right: 18px;
    padding-left: 18px;
    box-sizing: border-box;
}

.main__listbox__list__name::after,
.main__listbox__list__time::after,
.main__listbox__list__score::after{
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 58%;
    background: linear-gradient(180deg, rgba(103, 148, 232, 0) 0%, rgba(103, 148, 232, 0.65) 45%, rgba(103, 148, 232, 0.65) 55%, rgba(103, 148, 232, 0) 100%);
    opacity: 0.8;
    box-shadow: 0 0 10px rgba(79, 124, 255, 0.35);
    border-radius: 999px;
}

.main__listbox__list__name::after,
.main__listbox__list__time::after,
.main__listbox__list__score::after{
    filter: blur(0.15px);
}

.main__listbox__list__score::after{
    height: 52%;
    opacity: 0.65;
}

.main__listbox__list__btnbox{
    width: 25%;

    display: flex;
    justify-content: center;
    align-items: center;

    height: 100%;
    padding-left: 20px;
    box-sizing: border-box;
}

.main__listbox__list__btnbox__btn{
    height: 40px;
    width: 100%;
    background: linear-gradient(135deg, #ff8a8a 0%, #ff6262 100%);

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 30px;
    color: white;
    font-weight: 700;
    letter-spacing: 0.2px;
    border: none;
    box-shadow: 0 8px 16px rgba(204, 61, 61, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.main__listbox__list__btnbox__btn:hover{
    cursor: pointer;
    transform: translateY(-1px);
    box-shadow: 0 12px 20px rgba(204, 61, 61, 0.4);
}

.main__listbox__list__btnbox__btn.is-active{
    background: linear-gradient(135deg, #3ed383 0%, #2e9f5b 100%);
    box-shadow: 0 10px 18px rgba(46, 159, 91, 0.35);
}

.main__listbox__list__btnbox__btn:focus-visible{
    outline: 2px solid rgba(255, 255, 255, 0.85);
    outline-offset: 2px;
}
