.authentication-form-layout {
    width: 500px;
    border-radius: 20px;
}

/* Custom styles */
:root {
    --primary-color: var(--bs-primary);
    --primary-dark: #d35400;
    --sidebar-bg: #343a40;
    /* Darker sidebar to match Lux theme */
    --sidebar-text: #ffffff;
    --highlight-bg: #e67e22;
}

body {
    /* font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    overflow: hidden;
    /* Prevent scrolling on body */
}

.sidebar {
    background-color: var(--sidebar-bg);
    color: var(--sidebar-text);
    height: calc(100vh - 56px);
    width: 100%;
    position: sticky;
    top: 56px;
    overflow-y: auto;

}

.sidebar .nav-link {
    color: var(--sidebar-text);
    padding: 15px 20px;
    border-left: 4px solid transparent;
}

.sidebar .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.sidebar .nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--primary-color);
}

.sidebar .nav-link i {
    margin-right: 10px;
}

.content-wrapper {
    flex-grow: 1;
    width: 100%;
    padding: 20px;
    height: calc(100vh - 56px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.page-title {
    margin-bottom: 20px;
    font-weight: lighter;
}

.table-container {
    border-radius: 4px;
    overflow: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    /* Important for Firefox */
}

.table-wrapper {
    overflow-y: auto;
    flex: 1;
}

.table {
    margin-bottom: 0;
    width: 100%;
}

.table thead th {
    position: sticky;
    top: 0;
    /* Background-color: #4691dc; */
    z-index: 10;
    cursor: pointer;
    border-bottom: 1px solid #dee2e6;
    height: 60px;
    min-height: 10rem;
    vertical-align: middle;
}

.table th {
    padding-right: 20px;
}

.table .sort-icon {
    margin-left: 5px;
    color: #aaa;
}

.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.pagination-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 2px;
    /* Lux has more squared buttons */
}

.pagination-button:hover {
    background-color: var(--primary-dark);
}

.pagination-button.disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.pagination-info {
    color: #666;
}

.table-filter-row {
    margin-bottom: 15px;
}

.filter-select,
.search-input {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px;
}

.search-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.scrollable-content {
    height: 100vh;
    overflow-y: auto;
    padding: 20px;
}

.message-text {
    color: white;
}

.decimal-cell {
    text-align: right;
    padding-right: 10px !important;
    min-width: 80px;
    white-space: nowrap;
}

.decimal-header {
    text-align: right;
    padding-right: 10px !important;
    min-width: 80px;
    white-space: nowrap;
}