﻿.bench-list {
    margin-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.bench-list-title {
    font-size: 0.9rem;
    color: var(--secondary-text);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.bench-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

    .bench-item:last-child {
        border-bottom: none;
    }

.btn-bench-delete {
    background: none;
    border: none;
    color: var(--secondary-text);
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    padding: 0 5px;
    transition: color 0.2s;
}

    .btn-bench-delete:hover {
        color: #e53935; /* Red */
    }

.bench-form-row {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

    .bench-form-row .form-group {
        flex-grow: 1;
        margin-bottom: 0;
    }

    .bench-form-row button {
        margin-bottom: 2px; /* Align with input */
        height: 42px; /* Match input height roughly */
    }
