html {
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #4a90e2;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin:0;
  margin-bottom: 60px;
}

button {
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn{
    cursor:pointer;
    transition: all 0.2s ease;
    border: none;
    font-weight: 500;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    background-color: #5b8fc9;
    color: white;
}

.btn:hover {
    background-color: #4a7fb8;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-default {
    background-color: #6b7785;
    color: white;
}

.btn-default:hover {
    background-color: #5a6573;
}

.btn-primary {
    background-color: #5b8fc9;
    color: white;
}

.btn-primary:hover {
    background-color: #4a7fb8;
}

/* Modern Input and Select Styles */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="datetime-local"],
select,
textarea {
    border: 1px solid #d1d5db;
    background-color: #ffffff;
    padding: 0.625rem 0.875rem;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    outline: none;
}

input[type="text"]:hover,
input[type="email"]:hover,
input[type="password"]:hover,
input[type="number"]:hover,
input[type="date"]:hover,
input[type="datetime-local"]:hover,
select:hover,
textarea:hover {
    border-color: #9ca3af;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,#5b8fc9
input[type="datetime-local"]:focus,
select:focus,
textarea:focus {
    border-color: #5b8fc9;
    box-shadow: 0 0 0 3px rgba(91, 143, 201, 0.1);
}

input[type="text"]:disabled,
input[type="email"]:disabled,
input[type="password"]:disabled,
input[type="number"]:disabled,
input[type="date"]:disabled,
input[type="datetime-local"]:disabled,
select:disabled,
textarea:disabled {
    background-color: #f3f4f6;
    color: #6b7280;
    cursor: not-allowed;
}

input[readonly] {
    background-color: #f9fafb;
    color: #4b5563;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='00 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px;
    padding-right: 2.5rem;
}


/*--------------------------------------------------------------DATATABLES----------------------------------------------------------------------------------*/
/* Style for the icon button */
.btn-icon {
    width: 50px !important;
    height: 30px !important;
    padding: 6px 0 !important;
    border-radius: 4px !important;
    text-align: center !important;
    font-size: 12px !important;
    line-height: 1.42857 !important;
    background-color: #f8f9fa !important;
    border: 1px solid #ddd !important;
}

.dt-column-title{
    display:block;
    text-align:left;
}
/* Top container layout */
.top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    width: 100%;
}
.float-left {
    display:inline-block;
    float: left;
}

.float-right {
    display:inline-block;
    float: right;
}

/* To ensure the button is on the right side of search */
.dataTables_filter {
    order: 1;
}

.dt-buttons {
    order: 2;
    margin-left: 10px;
}

/*--------------------------------------------------------------NAVBAR--------------------------------------------------------------------------------------*/

.navbar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    overflow: visible;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    padding: 0;
    border-bottom: 3px solid rgba(255, 255, 255, 0.1);
}

.culture-container {
    display: flex;
    gap: 10px;
    align-self: center;
    margin-left: auto;
    margin-right: 20px;
}

.navbar a {
    font-size: 16px;
    float: left;
    display: flex;
    align-items: center;
    color: #ffffff;
    text-align: center;
    padding: 18px 24px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.navbar a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.navbar a:hover::after {
    width: 80%;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    color: #ffffff;
    padding: 18px 24px;
    font-size: 16px;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 1;
    top: 100%;
    left: 0;
    overflow: hidden;
    float: left;
    border-radius: 0 0 8px 8px;
    border-top: 3px solid #667eea;
}

.dropdown-content a {
    color: #374151;
    padding: 14px 20px;
    text-decoration: none;
    display: block;
    width: 100%;
    float: left;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-content a::after {
    display: none;
}

.dropdown-content a:hover {
    background-color: #f3f4f6;
    color: #667eea;
    padding-left: 24px;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.language-button {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    font: inherit;
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.language-button:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.language-button:active {
    transform: translateY(0);
}

/*-----------------------------------------------------------PARTICIPANTS-----------------------------------------------------------------------------------*/

.page-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items:center;
}

.content-container{
    width:95%;
}

.forms-horizontal-container {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    margin-top: 2rem;
}

.form-section {
    flex: 1;
    max-width: 600px;
}

.driver-cabinet-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #374151;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #5b8fc9;
}

.type-select-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-right:20px;
    margin-bottom:1.5rem;
}

.participant-search-container {

    margin-left:20px;
}

.type-select-container select {
    margin-left: 50px;
    border-radius: 0.5rem;
    height: 40px;
    width: 50rem;
    border: 1px solid #d1d5db;
    padding: 0.625rem 0.875rem;
    transition: all 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px;
    padding-right: 2.5rem;
}


/*-------------------------------------------------------------EVENTS---------------------------------------------------------------------------------*/
.event-page-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.event-content-container {
    width: 95%;
  
}


.event-select-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

#events{
    margin-left:40px;
    width:20rem;
    height: 3rem;
    border-radius: 0.5rem;
    border: 1px solid #d1d5db;
    padding: 0.625rem 0.875rem;
    transition: all 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px;
    padding-right: 2.5rem;
}

#events:hover {
    border-color: #9ca3af;
}

#events:focus {
    border-color: #5b8fc9;
    box-shadow: 0 0 0 3px rgba(91, 143, 201, 0.1);
    outline: none;
}

#selected_event_name{
    margin-left:10px;
}

.event-col1 {
    width: 15%;
}

.event-col2 {
    width: 30%;
}

.event-col3 {
    width: 25%;
}

.event-col4, event-col5, event-col6 {
    width: 10%;
}
.transaction-sides-container{
    display:flex;
    flex-direction:column;
    margin-top:20px;
}
.add-article-sides-container{
    margin-left:auto;
    margin-right:auto;
    width:95%;
    display:flex;
    justify-content:space-between;
}

#articles{
    width:8rem;
    height:3rem;
    border-radius: 0.5rem;
    box-sizing:border-box;
    border: 1px solid #d1d5db;
    padding: 0.625rem 0.875rem;
    transition: all 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px;
}

#articles:hover {
    border-color: #9ca3af;
}

#articles:focus {
    border-color: #5b8fc9;
    box-shadow: 0 0 0 3px rgba(91, 143, 201, 0.1);
    outline: none;
}

#article_name{
    margin-left:20px;
    width:20rem;
    height:3rem;
    border-radius: 0.5rem;
    box-sizing:border-box;
    border: 1px solid #d1d5db;
    padding: 0.625rem 0.875rem;
    transition: all 0.2s ease;
}

#article_name:hover {
    border-color: #9ca3af;
}

#article_name:focus {
    border-color: #5b8fc9;
    box-shadow: 0 0 0 3px rgba(91, 143, 201, 0.1);
    outline: none;
}

.article-type-input {
    width: 15rem;
    height: 3rem;
    border-radius: 0.5rem;
    box-sizing: border-box;
    border: 1px solid #d1d5db;
    padding: 0.625rem 0.875rem;
    transition: all 0.2s ease;
}

.article-type-input:hover {
    border-color: #9ca3af;
}

.article-type-input:focus {
    border-color: #5b8fc9;
    box-shadow: 0 0 0 3px rgba(91, 143, 201, 0.1);
    outline: none;
}

#Priority {
    width: 8rem;
    height: 3rem;
    border-radius: 0.5rem;
    box-sizing: border-box;
    border: 1px solid #d1d5db;
    padding: 0.625rem 0.875rem;
    transition: all 0.2s ease;
}

#Priority:hover {
    border-color: #9ca3af;
}

#Priority:focus {
    border-color: #5b8fc9;
    box-shadow: 0 0 0 3px rgba(91, 143, 201, 0.1);
    outline: none;
}


#Transaction_sides{
 justify-self:center;
 align-self:center;
}

.transaction-sides-content{
    display:flex;
    justify-content:space-evenly;
  
}

#payer_dropdown, #recipient_dropdown {
    width: 10rem;
    height: 3rem;
    border-radius: 0.5rem;
    margin-top:15px;
    border: 1px solid #d1d5db;
    padding: 0.625rem 0.875rem;
    transition: all 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px;
    padding-right: 2.5rem;
}

#payer_dropdown:hover, #recipient_dropdown:hover {
    border-color: #9ca3af;
}

#payer_dropdown:focus, #recipient_dropdown:focus {
    border-color: #5b8fc9;
    box-shadow: 0 0 0 3px rgba(91, 143, 201, 0.1);
    outline: none;
}

.button-container{
    display: flex;
    justify-content:space-evenly;
    margin-top:50px;
    margin-bottom:30px;
}

.button-container input, .button-container button{
    width:5rem;
    height:3rem;
    border-radius: 0.5rem;
    border: none;
    background-color: #5b8fc9;
    color: white;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.button-container input:hover, .button-container button:hover {
    background-color: #4a7fb8;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.button-container input:active, .button-container button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.data-source-container {
    margin-top: 7rem;
}


.data-source-container p {
    margin-right: 10rem;
}

.data-source-container label{
    margin-top:auto;
    margin-bottom:auto;
    margin-right:20px;
}


.data-source-container #events {
  margin-left:15rem;
}

.data-source-row{
    display:flex;
    flex-direction:row;
}

/*--------------------------------------------------------------------BLOCKS--------------------------------------------------------------------*/

.block-container{
    margin-left:40px;
    margin-right:40px;
    margin-top:50px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.dropdown-row-container{
    display:flex;
    flex-direction:row;
    margin-bottom:40px;
    align-items:center;
}

.checkbox-with-label{
    display:flex;
    flex-direction:row;
    align-items:center;
    width:150px;
}

.block-container #events, .block-container #articles, .block-container #banks {
    height: 3rem;
    width: 8rem;
    margin-left: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #d1d5db;
    padding: 0.625rem 0.875rem;
    transition: all 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px;
}

.block-container #events:hover, .block-container #articles:hover, .block-container #banks:hover {
    border-color: #9ca3af;
}

.block-container #events:focus, .block-container #articles:focus, .block-container #banks:focus {
    border-color: #5b8fc9;
    box-shadow: 0 0 0 3px rgba(91, 143, 201, 0.1);
    outline: none;
}

.block-container label {
    font-size:large
}

.dropdown-row-container:not(:first-child){
    margin-top:20px;
}

.participants-table-with-checkbox{
    margin-top:20px;
    display:flex;
    flex-direction:column;
}

.table-container {
    max-height: 65vh;
    width: 100%;
    margin-bottom: 5rem;
    overflow-y: auto;
}

.payer-recipient-checkbox-container{
    display:flex;
    justify-content:space-evenly;
    margin-bottom:40px;
}

.selected-item-name{
    margin-left: 20px;
}

.block-till-container{
    width:fit-content;
    margin-top:40px;
    display:flex;
    align-items:center;
    margin-left:auto;
    margin-right:auto;
}

.block-till-container input {
    margin-left:20px;
    border-radius: 0.5rem;
    height: 3rem;
    width: 10rem;
    border: 1px solid #d1d5db;
    padding: 0.625rem 0.875rem;
    transition: all 0.2s ease;
}

.block-till-container input:hover {
    border-color: #9ca3af;
}

.block-till-container input:focus {
    border-color: #5b8fc9;
    box-shadow: 0 0 0 3px rgba(91, 143, 201, 0.1);
    outline: none;
}

.block-till-container label{
   font-weight:bold;
   font-size: xx-large;
}

.form-button-container{
    margin-top:40px;
    display:flex;
    flex-direction:row;
    justify-content:space-evenly
}

.form-button-container button{
    width:8rem;
    height:3rem;
    border-radius: 0.5rem;
    font-weight:bold;
    font-size:large;
    border: none;
    background-color: #5b8fc9;
    color: white;
    transition: all 0.2s ease;
    cursor: pointer;
}

.form-button-container button:hover {
    background-color: #4a7fb8;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-button-container button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.add-article-container input, .add-article-container select {
    margin-left: 3rem;
    margin-bottom: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 0.625rem 0.875rem;
    transition: all 0.2s ease;
}

.add-article-container input:hover, .add-article-container select:hover {
    border-color: #9ca3af;
}

.add-article-container input:focus, .add-article-container select:focus {
    border-color: #5b8fc9;
    box-shadow: 0 0 0 3px rgba(91, 143, 201, 0.1);
    outline: none;
}

.add-article-container select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px;
    padding-right: 2.5rem;
}

#Type {
    width:6rem;
}

#Name{
    width:20rem;
}

#CrtDbt{
    width:5rem
}

#Blocktill{
    width:10rem;
}

#create_article{
    width:6rem;
    margin:0;
    margin-top: 1rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    border: none;
    background-color: #5b8fc9;
    color: white;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

#create_article:hover {
    background-color: #4a7fb8;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#create_article:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.add-edit-item-container{
    display:flex;
    flex-direction:column;
    gap:15px;
}

    .add-edit-item-container input, .add-edit-item-container select{
        border: 1px solid #d1d5db;
        border-radius: 0.5rem;
        padding: 0.625rem 0.875rem;
        transition: all 0.2s ease;
    }

    .add-edit-item-container input:hover, .add-edit-item-container select:hover {
        border-color: #9ca3af;
    }

    .add-edit-item-container input:focus, .add-edit-item-container select:focus {
        border-color: #5b8fc9;
        box-shadow: 0 0 0 3px rgba(91, 143, 201, 0.1);
        outline: none;
    }

    .add-edit-item-container select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 0.75rem center;
        background-size: 12px;
        padding-right: 2.5rem;
    }

.add-edit-item-container label{
    display:inline-block;
    width:110px;
}

#transaction_type_dropdown{
    padding-right:10px;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 0.625rem 0.875rem;
    transition: all 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px;
}

#transaction_type_dropdown:hover {
    border-color: #9ca3af;
}

#transaction_type_dropdown:focus {
    border-color: #5b8fc9;
    box-shadow: 0 0 0 3px rgba(91, 143, 201, 0.1);
    outline: none;
}

.archive-filter-container {
    display: flex;
    flex-direction: row;
    gap: 5rem;
    align-items: center;
    margin-bottom: 2rem;
}

#archive_filter_button{
    display:inline-block;
    margin-left:auto;
    margin-right:5rem;
    height: 2.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    border: none;
    background-color: #5b8fc9;
    color: white;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

#archive_filter_button:hover {
    background-color: #4a7fb8;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#archive_filter_button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#create_transaction_form .form-group{
    margin-bottom:1rem;
}

#create_transaction_form .form-group label{
    display: inline-block;
    width: 100px;
}

#create_transaction_form .form-group select{
    width:100px;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 0.625rem 0.875rem;
    transition: all 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px;
    padding-right: 2.5rem;
}

#create_transaction_form .form-group select:hover {
    border-color: #9ca3af;
}

#create_transaction_form .form-group select:focus {
    border-color: #5b8fc9;
    box-shadow: 0 0 0 3px rgba(91, 143, 201, 0.1);
    outline: none;
}
.table > thead > tr > td.active, .table > tbody > tr > td.active, .table > tfoot > tr > td.active, .table > thead > tr > th.active, .table > tbody > tr > th.active, .table > tfoot > tr > th.active, .table > thead > tr.active > td, .table > tbody > tr.active > td, .table > tfoot > tr.active > td, .table > thead > tr.active > th, .table > tbody > tr.active > th, .table > tfoot > tr.active > th {
    background-color: #bed4e7ab;
}

#banking_table_container {
    height: 50vh;
    width: 100%;
    margin-bottom: 5rem;
    overflow-y: auto;
    border-radius: 10px;
    border: solid 1px black;
}

::-webkit-scrollbar {
    width: 0;
}

#banking_table {
    max-height: 100%;
    height: 100%;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    display: table;
    overflow-y: auto;
    margin-bottom: 0;
}


th {
    height: fit-content;
}


tr {
    height: 40px;
    min-height: 40px;
    cursor: pointer;
}



#banking_table a {
    color: black;
    text-decoration: none;
}

thead tr {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: sticky;
    top: 0;
    color: white;
    font-size: 14px;
}


table td, table th {
    border: 1px solid black;
}

.banking-information-container {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
}

.banking-information-container label {
    display: inline-block;
    width: 100px;
}

.banking-information-container p {
    display: inline-block;
    width: 100px;
    font-weight: bold;
}

.banking-information-container input {
    margin-left: 40px;
    border-radius: 0.5rem;
    margin-bottom: 15px;
    width: 100%;
    max-width: 200px;
    height: 1rem;
    border: 1px solid #d1d5db;
    padding: 0.625rem 0.875rem;
    transition: all 0.2s ease;
}

#PriorityPayer, #PriorityRecipient {
    margin-left:0;
    max-width: 40px;
}

.banking-information-container .btn-primary {
    width: 5rem;
    margin-left: 0;
    height: 2rem;
    padding:0;
}

.banking-information-container input:hover {
    border-color: #9ca3af;
}

.banking-information-container input:focus {
    border-color: #5b8fc9;
    box-shadow: 0 0 0 3px rgba(91, 143, 201, 0.1);
    outline: none;
}