/* Основной контейнер */
.selection-page-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
}

/* Заголовок */
.selection-page-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Обёртка таблицы */
.selection-page-table-wrapper {
    overflow-x: auto;
}

/* Таблица */
.selection-page-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Заголовки таблицы */
.selection-page-table thead {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    color: #fff;
    font-size: 18px;
}

.selection-page-table th, .selection-page-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

/* Изображения */
.selection-page-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Кнопки */
.btn-details {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 8px 12px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-details:hover {
    background: linear-gradient(135deg, #0056b3, #003c8f);
}

.btn-remove {
    background: #ff4d4f;
    color: #fff;
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-remove:hover {
    background: #d32f2f;
}

/* Кнопки управления подборкой */
.selection-page-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-clear {
    background: linear-gradient(135deg, #ff4d4f, #c62828);
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-clear:hover {
    background: linear-gradient(135deg, #e53935, #b71c1c);
}

.btn-book {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn-book:hover {
    background: linear-gradient(135deg, #388e3c, #1b5e20);
}

/* Сообщение о пустой подборке */
.empty-selection {
    font-size: 18px;
    color: #777;
    margin-top: 20px;
}
