.bg-primary {
    background-color: #00897b;
}
.bg-primary:hover {
    background-color: #00695c;
}

.text-primary {
    color: #00897b;
}

.bg-secondary {
    background-color: #dff1f1;
}


.text-secondary {
    color: #161717;
}

#logo {
    width: 150px;
}

.alert {
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.alert-success {
    background-color: #dff1f1;
    color: #00897b;
}



.table-container {
    position: relative;
    width: 100%;
    overflow: auto;
    max-height: 75vh;
}

.table-container table {
    border-collapse: separate;
    border-spacing: 0;
}

.table-container th, td {
    white-space: nowrap;
}

.table-container thead tr th:first-child,
.table-container tbody tr td:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
    background-color: #f8f9fa;
    border-right: 1px solid #dee2e6;
}

.table-container thead tr th {
    position: sticky;
    top: 0;
    z-index: 2;
    background-color: #f3f4f6;
}

.table-container thead tr th:first-child {
    z-index: 3; /* 左上角のセルは最上位のz-indexを持つ */
}

table.w-full tbody tr:hover {
    background-color: #fef3c7;
}

table.w-full tbody tr:hover td {
    background-color: #fef3c7;
}

/* Select2 hover styles */
.select2-results__option--highlighted {
    background-color: #00897b !important;
    color: white !important;
}

.select2-container--default .select2-results__option--highlighted {
    background-color: #00897b !important;
    color: white !important;
}