/* Tab Container */
.tab-container {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #f4f4f4;
    z-index: 999;
    overflow-x: auto;
    white-space: nowrap;
}

/* Tab Buttons */
.tab-container button {
    background-color: #f4f4f4;
    border: none;
    color: black;
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.3s;
    display: inline-block;
}

.tab-container button:hover {
    background-color: #ddd;
}

.tab-container button.active {
    background-color: #e0e0e0;
    color: black;
}

/* Tab Content Sections */
.tab-content {
    padding-top: 50px;
}

/* Individual Tab Content Sections */
.tab-pane {
    display: none;
    margin-top: 120px;
}

.tab-pane.active {
    display: block;
}

/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #e0e0e0;
    margin: 0;
    padding: 0;
}

.form-container {
    background-color: #FCFDFD;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 50px auto;
    max-width: 1000px;
}
.notes-field {
    margin-top: 10px; /* Adjust margin as needed */
}

.notes-field label,
.notes-field input {
    display: block;
    margin-bottom: 5px; /* Adjust margin as needed */
}

form {
    display: inline-block;
}

label, input, select, option {
    font-weight: bold;
    margin-bottom: 5px;
    display: inline-block;
}

/* Table Styles */
.users-transactions table {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 20px;
    border-collapse: collapse;
}

.users-transactions th,
.users-transactions td {
    border: 1px solid #aaaaaa;
    padding: 5px;
}

.users-transactions th {
    background-color: #d6d6d6;
    text-align: center; /* Center the text in table headers */
}

.users-transactions td.notes {
    text-align: left;
}

/* Center contents of Approved and Action columns */
.users-transactions td.submitted,
.users-transactions td.approved,
.users-transactions td.action {
    text-align: center;
}

/* Miscellaneous Styles */
.highlight {
    background-color: pink;
}

.transaction:last-child {
    border-bottom: none;
}

#button-container {
    text-align: center;
}

#viewRequestsBtn {
    width: 150px;
    padding: 10px;
    border-radius: 5px;
    border: none;
    background-color: blue;
    color: white;
    cursor: pointer;
}

#viewRequestsBtn:hover {
    background-color: darkblue;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

p {
    color: black;
    margin-top: 5px;
    font-size: 0.9em;
}
