/* Базовые стили */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
}

.container-fluid {
    padding: 20px;
}

.btn {
    font-weight: 500;
    border-radius: 6px;
}

.form-control, .form-select {
    border-radius: 6px;
}

.table {
    border-radius: 8px;
    overflow: hidden;
}

.sticky-start {
    position: sticky;
    left: 0;
    z-index: 1;
}

.sticky-top {
    position: sticky;
    top: 0;
    z-index: 2;
}

input.form-control-sm {
    text-align: center;
    font-weight: bold;
    width: 65px;
    padding: 4px;
}

.table-responsive {
    border-radius: 10px;
    overflow: auto;
}

.btn, .list-group-item, .nav-link {
    transition: all 0.2s ease;
}

/* Стили для локаций */
.location-badge {
    position: relative;
    margin-top: 4px;
    font-size: 10px;
}

.badge-location {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 12px;
    white-space: nowrap;
}

/* Для компактного отображения в ячейке */
.cell-clickable {
    position: relative;
    min-width: 80px;
}

/* Подсказка при наведении */
.badge-location:hover {
    opacity: 0.8;
    cursor: help;
}
