/* **************************** Base Template **************************** */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Styling for the body */
body {
    font-family: Arial, sans-serif;
    background-color: #eaeaea;
}

/* Header styling */
header {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 10px; 
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: black;
}

/* Header Logo styling */
header .logo img {
    width: 60px; 
    height: auto;
    padding: 5px;
}

/* Navigation bar styling */
nav {
    display: flex; 
    padding: 10px;
}

/* General navigation styling */
nav ul {
    list-style: none;
    display: flex; 
    margin: 0; 
    padding: 0; 
}

/* Navigation link styling */
nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s; 
}

nav ul li a:hover {
    color: #4CAF50; 
}

/* Mobile Navigation */
.mobile-nav {
    display: flex; 
    align-items: center; 
}

/* Hamburger menu button styling */
.mobile-nav button.menu-toggle {
    background: transparent;
    color: white;
    border: none;
    font-size: 24px; 
    cursor: pointer;
    margin-left: auto; 
}

/* Mobile styles for nav links */
nav.mobile-nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 50px;
    left: 0; 
    right: 0; 
    background: black; 
    width: 100%; 
    z-index: 999; 
}

nav.mobile-nav ul.active {
    display: flex; 
}

/* Additional styles for desktop navigation */
nav.desktop-nav {
    display: flex; 
}

.notification {
    position: fixed;
    top: 20px; /* Adjust the distance from the top as needed */
    left: 50%; /* Position from the left */
    transform: translateX(-50%); /* Center the notification horizontally */
    background-color: #4CAF50; /* Green */
    color: white;
    padding: 15px;
    border-radius: 5px;
    z-index: 1000;
    transition: opacity 0.5s;
    text-align: center; /* Center text within the notification */
}

/* First section styling */
.main-section {
    background-color: #eaeaea;
    color: rgb(135, 135, 135);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 25px;
    padding: 40px; 
}

/* Logo container styling */
.logo-container {
    background-color: #fff;
    border-radius: 5px;
    padding: 40px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.logo-container img {
    width: 100%; 
    max-width: 600px;
    height: auto; 
}

.logo-container h1 {
    font-size: 40px;
    margin: 20px 0 40px 0;
    color: #000000;
}

.logo-container h2 {
    font-size: 24px;
    margin: 40px 0 0 0;
    color: #000000;
}

/* Options container styling */
.options-container {
    padding: 20px;
    text-align: center;
}
/* Remove link styles */
.options-container a {
    text-decoration: none;

}

.options-container button {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    padding: 10px 20px;
    border-radius: 4px;
    width: 30%;
    font-size: 20px;
    margin: 15px;
    transition: background-color 0.3s;
}

.options-container button:hover {
    background-color: #45a049;
}

/* Footer styling */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    width: 100%;
    margin-top: 20px;
    position: relative;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination a {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    color: #000000;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.3s, color 0.3s;
}

.pagination a:hover {
    background-color: #007bff;
    color: #fff;
}

.pagination a.active {
    background-color: #000000;
    color: white;
    border-color: #007bff;
}

.pagination a.disabled {
    pointer-events: none;
    background-color: #e9ecef;
    color: #6c757d;
    border-color: #ddd;
}


/* **************************** Base Template End **************************** */


/* **************************** Login Page **************************** */

.login-form {
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 600px; 
}
.login-form h1 {
    font-size: 40px;
    margin: 20px;
    color: #000000;
}
.login-form h2 {
    font-size: 24px;
    margin: 40px 0px 0px 0px;
    color: #000000;
}

.login-form label {
    font-size: 20px;
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000000;
}

.login-form input {
    width: 90%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.login-form button {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    padding: 10px 20px;
    border-radius: 4px;
    width: 50%;
}

.login-form button:hover {
    background-color: #909090;
}

.login-form img {
    max-width: 200px;
    margin-bottom: 20px;
}
/* **************************** Login Page End **************************** */


/* **************************** Expense Page **************************** */

.expsense-container {
    width: 80%;
    height: auto;
    max-width: 600px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
    margin: auto auto;
}

.expsense-container img {
    max-width: 150px;
    margin-bottom: 20px;
}

/* Form styles */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

input, select {
    margin-top: 10px;
    padding: 10px;
    width: 100%;
    max-width: 300px;
    border-radius: 4px;
    border: 1px solid #ddd;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    padding: 10px 20px;
    border-radius: 4px;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

/* Message styles */
.message {
    margin-top: 20px;
    font-weight: bold;
}

.success {
    color: green;
}

.error {
    color: red;
}

.bottom-padding {
    padding-bottom: 40px; /* Adjust the value as needed */
}

/* **************************** Expense Page End **************************** */

/* **************************** Support Ticket Form Page **************************** */

.support-form-container {
    width: 90%;
    max-width: 600px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
    margin: 40px auto;
}

.support-form-container h2 {
    font-size: 14px;
    color: rgb(0, 0, 0);
    margin: 5px;
}

.support-form-container img {
    max-width: 150px;
    margin-bottom: 20px;
}

.support-form-container form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.support-form-container textarea {
    min-height: 100px; /* Set a minimum height */
    max-height: 300px; /* Set a maximum height */
    overflow-y: auto; /* Add vertical scrollbar if needed */
    transition: height 0.2s ease; /* Smooth height transition */
    resize: none; /* Disable resizing */
    margin-top: 10px;
    padding: 10px;
    width: 100%;
    max-width: 300px;
    border-radius: 4px;
    border: 1px solid #ddd;
    box-sizing: border-box;
}

.support-form-container input, select {
    margin-top: 10px;
    padding: 10px;
    width: 100%;
    max-width: 300px;
    border-radius: 4px;
    border: 1px solid #ddd;
    box-sizing: border-box;
}

.support-form-container input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    padding: 10px 20px;
    border-radius: 4px;
}

.support-form-container input[type="submit"]:hover {
    background-color: #45a049;
}

.support-form-container .message {
    margin-top: 20px;
    font-weight: bold;
}

.support-form-container .success {
    color: green;
}

.support-form-container .error {
    color: red;
}

.support-form-container .bottom-padding {
    padding-bottom: 40px; /* Adjust the value as needed */
}

/* **************************** Support Ticket Form Page End **************************** */


/* **************************** Profile Page **************************** */

.profile-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    min-width: 300px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-card h2 {
    color: #333; /* Color for profile card headings */
    font-size: 20px;
}

.profile-card li {
    list-style-type: none; /* Remove list style */
    margin-bottom: 5px; /* Space between list items */
}

.profile-card a {
    text-decoration: none; /* Remove underline */
}

.profile-card ul, .profile-card li {
    text-align: left; /* Align text to the left */
    padding: 5px; /* Padding for lists */
}

.user-profile {
    display: flex;
    justify-content: center; /* Center content */
    align-items: center; /* Align items vertically */
    height: 100vh; /* Full viewport height */
}

.profile-button {
    background-color: rgb(13, 153, 0); /* Button background color */
    border: 1px solid #ccc; /* Button border */
    border-radius: 5px; /* Rounded corners for button */
    color: white; /* Text color for button */
    padding: 5px 5px; /* Padding for button */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s; /* Smooth background transition */
    width: 80px; /* Button width */
    font-size: 20px;
}

.profile-button:hover {
    background-color: rgb(255, 0, 0); /* Change color on hover */
}

/* **************************** Profile Page  End **************************** */


/* **************************** User Request Page **************************** */

.request-container {
    width: 100%;
    height: auto;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin: auto auto;
}

:root {
    --background: #EBECF0;
    --table-background: #FFFFFF;
    --primary: #101824;
    --gray: #A0A7B1;
    --odd-row: #f6f9ff;
    --gray-background: #EDEEF1;
    --gray-mid: #F1F2F6;
}

.user-request-table-widget {
    flex: 1;
    border-radius: 16px;
    background-color: var(--table-background);
    padding: 24px;
    border: 2px solid var(--gray-background);
    box-shadow: 
     rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
     rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    text-align: left;
    overflow-x: auto;
    margin: 100px auto auto auto;
    position: relative;
}

.user-request-table-widget a {
    color: #696969;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s; 
}

.user-request-table-widget table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}

.user-request-table-widget caption {
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    margin: 8px 0px;
}

.user-request-table-widget th {
    padding: 20px 16px;
    font-size: 16px;
    color: #000000;
}

.user-request-table-widget thead {
    border-top: 2px solid var(--gray-background);
}

.user-request-table-widget tfoot {
    margin-top: 16px;
    border-top: 2px solid var(--gray-background);
}

.user-request-table-widget td {
    padding: 8px 16px;
    overflow-wrap: break-word;
    font-size: 16px;
}

.user-request-table-widget tbody tr {
    cursor: pointer;
    animation: fadeIn 0.5s ease-in-out;
}

.user-request-table-widget tbody tr:nth-child(odd) {
    background-color: var(--odd-row);
}

.user-request-table-widget tbody tr:hover {
    background-color: #e2ecff;
}

.user-request-table-widget select{
    width: 100%; /* Take up the full width of the container */
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.user-request-table-widget .table-row-count {
    font-size: 16px;
    font-weight: 700;
    background-color: var(--odd-row);
    padding: 8px;
    display: inline-flex;
    align-items: center;
    margin-left: 16px;
    border-radius: 8px;
}

.user-request-table-widget .tag::first-letter {
    text-transform: uppercase;
}

.user-request-table-widget input[type="text"] {
    width: 100%; /* Take up the full width of the container */
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box; 
}

/* Style for placeholders in input fields */
.user-request-table-widget input::placeholder {
color: #999; 
}

/* Style for focused input fields */
.user-request-table-widget input:focus {
border-color: #0f7d00;
outline: none;
}

.user-request-table-widget .remove-button {
    background-color: rgb(13, 153, 0);
    border: 1px solid #ccc;
    border-radius: 5px;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 80px;
}

.user-request-table-widget .remove-button:hover {
    background-color: rgb(255, 0, 0);
}

.user-request-table-widget .add-button {
    background-color: rgb(13, 153, 0);
    border: 1px solid #ccc;
    border-radius: 5px;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 80px;
}

.user-request-table-widget .add-button:hover {
    background-color: rgb(255, 0, 0);
}

.user-request-table-widget .purchased-button {
    background-color: rgb(13, 153, 0);
    border: 1px solid #ccc;
    border-radius: 5px;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 80px;
}

.user-request-table-widget .purchased-button:hover {
    background-color: rgb(255, 0, 0);
}

.user-request-table-widget .update-button {
    background-color: rgb(13, 153, 0);
    border: 1px solid #ccc;
    border-radius: 5px;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 80px;
}

.user-request-table-widget .update-button:hover {
    background-color: rgb(255, 0, 0);
}

.user-request-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.user-request-header caption {
    margin: 0;
    padding: 0;
    font-size: 1.2em;
    font-weight: bold;
}

.user-request-header input {
    padding: 5px;
    font-size: 1em;
    width: 200px;
}


/* ****************************  User Request Page End ****************************  */

/* **************************** User Support Page ****************************  */

.support-container {
    width: 100%;
    height: auto;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin: auto auto;
}

.user-support-table-widget :root {
    --background: #EBECF0;
    --table-background: #FFFFFF;
    --primary: #101824;
    --gray: #A0A7B1;
    --odd-row: #f6f9ff;
    --gray-background: #EDEEF1;
    --gray-mid: #F1F2F6;
}


.user-support-table-widget {
    flex: 1;
    border-radius: 16px;
    background-color: var(--table-background);
    padding: 24px;
    border: 2px solid var(--gray-background);
    box-shadow: 
     rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
     rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    text-align: left;
    overflow-x: auto;
    margin: 100px auto auto auto;
    position: relative;
}

.user-support-table-widget a {
    color: #696969;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s; 
}

.user-support-table-widget table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}

.user-support-table-widget caption {
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    margin: 8px 0px;
}

.user-support-table-widget th {
    padding: 20px 16px;
    font-size: 16px;
    color: #000000;
}

.user-support-table-widget thead {
    border-top: 2px solid var(--gray-background);
}

.user-support-table-widget tfoot {
    margin-top: 16px;
    border-top: 2px solid var(--gray-background);
}

.user-support-table-widget td {
    padding: 8px 16px;
    overflow-wrap: break-word;
    font-size: 16px;
}

.user-support-table-widget tbody tr {
    cursor: pointer;
    animation: fadeIn 0.5s ease-in-out;
}

.user-support-table-widget tbody tr:nth-child(odd) {
    background-color: var(--odd-row);
}

.user-support-table-widget tbody tr:hover {
    background-color: #e2ecff;
}

.user-support-table-widget select{
    width: 100%; /* Take up the full width of the container */
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.user-support-table-widget .table-row-count {
    font-size: 16px;
    font-weight: 700;
    background-color: var(--odd-row);
    padding: 8px;
    display: inline-flex;
    align-items: center;
    margin-left: 16px;
    border-radius: 8px;
}

.user-support-table-widget .tag::first-letter {
    text-transform: uppercase;
}

.user-support-table-widget input[type="text"] {
    width: 100%; /* Take up the full width of the container */
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box; 
}

/* Style for placeholders in input fields */
.user-support-table-widget input::placeholder {
color: #999; 
}

/* Style for focused input fields */
.user-support-table-widget input:focus {
border-color: #0f7d00;
outline: none;
}

.user-support-table-widget .remove-button {
    background-color: rgb(13, 153, 0);
    border: 1px solid #ccc;
    border-radius: 5px;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 80px;
}

.user-support-table-widget .remove-button:hover {
    background-color: rgb(255, 0, 0);
}

.user-support-table-widget .add-button {
    background-color: rgb(13, 153, 0);
    border: 1px solid #ccc;
    border-radius: 5px;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 80px;
}

.user-support-table-widget .add-button:hover {
    background-color: rgb(255, 0, 0);
}

.user-support-table-widget .purchased-button {
    background-color: rgb(13, 153, 0);
    border: 1px solid #ccc;
    border-radius: 5px;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 80px;
}

.user-support-table-widget .purchased-button:hover {
    background-color: rgb(255, 0, 0);
}

.user-support-table-widget .update-button {
    background-color: rgb(13, 153, 0);
    border: 1px solid #ccc;
    border-radius: 5px;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 80px;
}

.user-support-table-widget .update-button:hover {
    background-color: rgb(255, 0, 0);
}

.user-support-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.user-support-header caption {
    margin: 0;
    padding: 0;
    font-size: 1.2em;
    font-weight: bold;
}

.user-support-header input {
    padding: 5px;
    font-size: 1em;
    width: 200px;
}
/* **************************** User Support Page End **************************** */

/* **************************** User Profile Update Page **************************** */

.profile-page-container
    {
        display: flex;
        flex-direction: column;
        align-items: center;
    }


.user-update-profile-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    min-width: 300px;
    margin: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.user-update-profile-card h2 {
    color: #333;
}

.user-update-profile-card li {
    list-style-type: none;
    margin-bottom: 10px;
}

.user-update-profile-card a {
    text-decoration: none;
}


.user-update-profile-card h2, .profile-card h3 {
    padding: 5px;
}

.user-update-profile-card ul, .profile-card li {
    text-align: left;
    padding: 5px;
}

.user-update-profile-card .user-profile {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-update-profile-card .profile-button {
    background-color: rgb(13, 153, 0);
    border: 1px solid #ccc;
    border-radius: 5px;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 80px;
}

.user-update-profile-card .profile-button:hover {
    background-color: rgb(255, 0, 0);
}

.user-update-table-widget :root {
    --background: #EBECF0;
    --table-background: #FFFFFF;
    --primary: #101824;
    --gray: #A0A7B1;
    --odd-row: #f6f9ff;
    --gray-background: #EDEEF1;
    --gray-mid: #F1F2F6;
}

.user-update-table-widget {
    flex: 1;
    border-radius: 16px;
    background-color: var(--table-background);
    padding: 24px;
    border: 2px solid var(--gray-background);
    box-shadow: 
     rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
     rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    text-align: left;
    overflow-x: auto;
    margin: 5px;
    width: 80%;
    position: relative;
}

.user-update-table-widget table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}

.user-update-table-widget caption {
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    margin: 8px 0px;
}

.user-update-table-widget th {
    padding: 20px 16px;
    font-size: 16px;
    color: #000000;
}

.user-update-table-widget thead {
    border-top: 2px solid var(--gray-background);
}

.user-update-table-widget tfoot {
    margin-top: 16px;
    border-top: 2px solid var(--gray-background);
}

.user-update-table-widget td {
    padding: 8px 16px;
    overflow-wrap: break-word;
    font-size: 16px;
}

.user-update-table-widget tbody tr {
    cursor: pointer;
    animation: fadeIn 0.5s ease-in-out;
}

.user-update-table-widgettbody tr:nth-child(odd) {
    background-color: var(--odd-row);
}

.user-update-table-widget tbody tr:hover {
    background-color: #e2ecff;
}

.user-update-table-widget select{
    width: 100%; /* Take up the full width of the container */
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.user-update-table-widget .table-row-count {
    font-size: 16px;
    font-weight: 700;
    background-color: var(--odd-row);
    padding: 8px;
    display: inline-flex;
    align-items: center;
    margin-left: 16px;
    border-radius: 8px;
}

.user-update-table-widget .tag::first-letter {
    text-transform: uppercase;
}

.user-update-table-widget input[type="text"] {
    width: 100%; /* Take up the full width of the container */
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box; 
}

.user-update-table-widget input[type="password"] {
    width: 100%; /* Take up the full width of the container */
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box; 
}

/* Style for placeholders in input fields */
.user-update-table-widget input::placeholder {
color: #999; 
}

/* Style for focused input fields */
.user-update-table-widget input:focus {
border-color: #0f7d00;
outline: none;
}

.user-update-table-widget .remove-button {
    background-color: rgb(13, 153, 0);
    border: 1px solid #ccc;
    border-radius: 5px;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 80px;
}

.user-update-table-widget .remove-button:hover {
    background-color: rgb(255, 0, 0);
}

.user-update-table-widget .add-button {
    background-color: rgb(13, 153, 0);
    border: 1px solid #ccc;
    border-radius: 5px;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 80px;
}

.user-update-table-widget .add-button:hover {
    background-color: rgb(255, 0, 0);
}

.user-update-table-widget .purchased-button {
    background-color: rgb(13, 153, 0);
    border: 1px solid #ccc;
    border-radius: 5px;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 80px;
}

.user-update-table-widget .purchased-button:hover {
    background-color: rgb(255, 0, 0);
}

.user-update-table-widget .update-button {
    background-color: rgb(13, 153, 0);
    border: 1px solid #ccc;
    border-radius: 5px;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 80px;
}

.user-update-table-widget .update-button:hover {
    background-color: rgb(255, 0, 0);
}

/* **************************** User Profile Update End  **************************** */

/* **************************** User Profile Admin Update **************************** */

.user-profile-page-container
    {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

.user-profile-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    min-width: 300px;
    margin: 80px auto 40px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.user-profile-card h2 {
    color: #333;
}

.user-profile-card li {
    list-style-type: none;
    margin-bottom: 10px;
}

.user-profile-card a {
    text-decoration: none;
}

.user-profile-card h2, .user-profile-card h3 {
    padding: 5px;
}

.user-profile-card ul, .user-profile-card li {
    text-align: left;
    padding: 5px;
}

.user-profile-card .profile-button {
    background-color: rgb(13, 153, 0);
    border: 1px solid #ccc;
    border-radius: 5px;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 80px;
}

.user-profile-card .profile-button:hover {
    background-color: rgb(255, 0, 0);
}

/* Request Table Styles*/
.user-profile-table-widget :root {
    --background: #EBECF0;
    --table-background: #FFFFFF;
    --primary: #101824;
    --gray: #A0A7B1;
    --odd-row: #f6f9ff;
    --gray-background: #EDEEF1;
    --gray-mid: #F1F2F6;
}


.user-profile-table-widget {
    flex: 1;
    border-radius: 16px;
    background-color: var(--table-background);
    padding: 20px;
    border: 2px solid var(--gray-background);
    box-shadow: 
     rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
     rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    text-align: left;
    overflow-x: auto;
    margin: 20px 20px 20px 20px;
    height: auto;
    position: relative;
}

.user-profile-table-widget table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}

.user-profile-table-widget t caption {
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    margin: 8px 0px;
}

.user-profile-table-widget  th {
    padding: 20px 16px;
    font-size: 16px;
    color: #000000;
}

.user-profile-table-widget  thead {
    border-top: 2px solid var(--gray-background);
}

.user-profile-table-widget  tfoot {
    margin-top: 16px;
    border-top: 2px solid var(--gray-background);
}

.user-profile-table-widget  td {
    padding: 8px 16px;
    max-width: 125px;
    overflow-wrap: break-word;
    font-size: 16px;
}

.user-profile-table-widget  tbody tr {
    cursor: pointer;
    animation: fadeIn 0.5s ease-in-out;
}

.user-profile-table-widget  tbody tr:nth-child(odd) {
    background-color: var(--odd-row);
}

.user-profile-table-widget  tbody tr:hover {
    background-color: #e2ecff;
}

.user-profile-table-widget  select{
    width: 100%; /* Take up the full width of the container */
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.user-profile-table-widget  .table-row-count {
    font-size: 16px;
    font-weight: 700;
    background-color: var(--odd-row);
    padding: 8px;
    display: inline-flex;
    align-items: center;
    margin-left: 16px;
    border-radius: 8px;
}

.user-profile-table-widget  .tag::first-letter {
    text-transform: uppercase;
}

.user-profile-table-widget input[type="text"] {
    width: 100%; /* Take up the full width of the container */
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box; 
}

.user-profile-table-widget input[type="password"] {
    width: 100%; /* Take up the full width of the container */
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box; 
}

/* Style for placeholders in input fields */
.user-profile-table-widget  input::placeholder {
color: #999; 
}

/* Style for focused input fields */
.user-profile-table-widget  input:focus {
border-color: #0f7d00;
outline: none;
}

.user-profile-table-widget  .remove-button {
    background-color: rgb(13, 153, 0);
    border: 1px solid #ccc;
    border-radius: 5px;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 80px;
}

.user-profile-table-widget  .remove-button:hover {
    background-color: rgb(255, 0, 0);
}

.user-profile-table-widget  .add-button {
    background-color: rgb(13, 153, 0);
    border: 1px solid #ccc;
    border-radius: 5px;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 80px;
}

.user-profile-table-widget  .add-button:hover {
    background-color: rgb(255, 0, 0);
}

.user-profile-table-widget  .purchased-button {
    background-color: rgb(13, 153, 0);
    border: 1px solid #ccc;
    border-radius: 5px;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 80px;
}

.user-profile-table-widget  .purchased-button:hover {
    background-color: rgb(255, 0, 0);
}

.user-profile-table-widget  .update-button {
    background-color: rgb(13, 153, 0);
    border: 1px solid #ccc;
    border-radius: 5px;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 80px;
}

.user-profile-table-widget  .update-button:hover {
    background-color: rgb(255, 0, 0);
}


/* **************************** User Profile Admin Update End ****************************  */


/* **************************** Approval Request Page **************************** */

.approver-container {
    width: 100%;
    height: auto;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin: auto auto;
}

/* Request Table Styles*/
.approval-table-widget  :root {
    --background: #EBECF0;
    --table-background: #FFFFFF;
    --primary: #101824;
    --gray: #A0A7B1;
    --odd-row: #f6f9ff;
    --gray-background: #EDEEF1;
    --gray-mid: #F1F2F6;
}

.approval-table-widget {
    flex: 1;
    border-radius: 16px;
    background-color: var(--table-background);
    padding: 24px;
    border: 2px solid var(--gray-background);
    box-shadow: 
     rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
     rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    text-align: left;
    overflow-x: auto;
    margin: 100px auto auto auto;
    position: relative;
}
.approval-table-widget a {
    color: #696969;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s; 
}
.approval-table-widget table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}

.approval-table-widget caption {
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    margin: 8px 0px;
}

.approval-table-widget th {
    padding: 20px 16px;
    font-size: 16px;
    color: #000000;
}

.approval-table-widget thead {
    border-top: 2px solid var(--gray-background);
}

.approval-table-widget tfoot {
    margin-top: 16px;
    border-top: 2px solid var(--gray-background);
}

.approval-table-widget td {
    padding: 8px 16px;
    overflow-wrap: break-word;
    font-size: 16px;
}

.approval-table-widget tbody tr {
    cursor: pointer;
    animation: fadeIn 0.5s ease-in-out;
}

.approval-table-widget tbody tr:nth-child(odd) {
    background-color: var(--odd-row);
}

.approval-table-widget tbody tr:hover {
    background-color: #e2ecff;
}

.approval-table-widget select{
    width: 100%; /* Take up the full width of the container */
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.approval-table-widget .table-row-count {
    font-size: 16px;
    font-weight: 700;
    background-color: var(--odd-row);
    padding: 8px;
    display: inline-flex;
    align-items: center;
    margin-left: 16px;
    border-radius: 8px;
}

.approval-table-widget .tag::first-letter {
    text-transform: uppercase;
}

.approval-table-widget input[type="text"] {
    width: 100%; /* Take up the full width of the container */
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box; 
}

/* Style for placeholders in input fields */
.approval-table-widget input::placeholder {
color: #999; 
}

/* Style for focused input fields */
.approval-table-widget input:focus {
border-color: #0f7d00;
outline: none;
}

.approval-table-widget .remove-button {
    background-color: rgb(13, 153, 0);
    border: 1px solid #ccc;
    border-radius: 5px;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 80px;
}

.approval-table-widget .remove-button:hover {
    background-color: rgb(255, 0, 0);
}

.approval-table-widget .add-button {
    background-color: rgb(13, 153, 0);
    border: 1px solid #ccc;
    border-radius: 5px;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 80px;
}

.approval-table-widget .add-button:hover {
    background-color: rgb(255, 0, 0);
}

.approval-table-widget .purchased-button {
    background-color: rgb(13, 153, 0);
    border: 1px solid #ccc;
    border-radius: 5px;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 80px;
}

.approval-table-widget .purchased-button:hover {
    background-color: rgb(255, 0, 0);
}

.approval-table-widget .update-button {
    background-color: rgb(13, 153, 0);
    border: 1px solid #ccc;
    border-radius: 5px;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 80px;
}

.approval-table-widget .update-button:hover {
    background-color: rgb(255, 0, 0);
}

.approval-table-widget .approval-cell {
    display: flex;
    align-items: center; /* Vertically center items */
}

.approval-table-widget .approval-select {
    margin-right: 10px; /* Space between the select and button */
}

.approver-request-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.approver-request-header caption {
    margin: 0;
    padding: 0;
    font-size: 1.2em;
    font-weight: bold;
}

.approver-request-header input {
    padding: 5px;
    font-size: 1em;
    width: 200px;
}

/* **************************** Approval Request Page End **************************** */

/* **************************** Tech Request Page **************************** */

.tech-request-container {
    width: 100%;
    height: auto;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin: auto auto;
}
/* Request Table Styles*/
.tech-request-table-widget  :root {
    --background: #EBECF0;
    --table-background: #FFFFFF;
    --primary: #101824;
    --gray: #A0A7B1;
    --odd-row: #f6f9ff;
    --gray-background: #EDEEF1;
    --gray-mid: #F1F2F6;
}


.tech-request-table-widget {
    flex: 1;
    border-radius: 16px;
    background-color: var(--table-background);
    padding: 24px;
    border: 2px solid var(--gray-background);
    box-shadow: 
     rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
     rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    text-align: left;
    overflow-x: auto;
    margin: 100px auto auto auto;
    position: relative;
}

.tech-request-table-widget a {
    color: #696969;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s; 
}

.tech-request-table-widget table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}

.tech-request-table-widget caption {
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    margin: 8px 0px;
}

.tech-request-table-widget th {
    padding: 20px 16px;
    font-size: 16px;
    color: #000000;
}

.tech-request-table-widget thead {
    border-top: 2px solid var(--gray-background);
}

.tech-request-table-widget tfoot {
    margin-top: 16px;
    border-top: 2px solid var(--gray-background);
}

.tech-request-table-widget td {
    padding: 8px 16px;
    overflow-wrap: break-word;
    font-size: 16px;
}

.tech-request-table-widget tbody tr {
    cursor: pointer;
    animation: fadeIn 0.5s ease-in-out;
}

.tech-request-table-widget tbody tr:nth-child(odd) {
    background-color: var(--odd-row);
}

.tech-request-table-widget tbody tr:hover {
    background-color: #e2ecff;
}

.tech-request-table-widget select{
    width: 100%; /* Take up the full width of the container */
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.tech-request-table-widget .table-row-count {
    font-size: 16px;
    font-weight: 700;
    background-color: var(--odd-row);
    padding: 8px;
    display: inline-flex;
    align-items: center;
    margin-left: 16px;
    border-radius: 8px;
}

.tech-request-table-widget .tag::first-letter {
    text-transform: uppercase;
}

.tech-request-table-widget input[type="text"] {
    width: 100%; /* Take up the full width of the container */
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box; 
}

/* Style for placeholders in input fields */
.tech-request-table-widget input::placeholder {
color: #999; 
}

/* Style for focused input fields */
.tech-request-table-widget input:focus {
border-color: #0f7d00;
outline: none;
}

.tech-request-table-widget .tech-support-textarea {
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
    resize: vertical; /* Allows vertical resizing */
    white-space: pre-wrap; /* Enables text wrapping */
}

.tech-request-table-widget .remove-button {
    background-color: rgb(13, 153, 0);
    border: 1px solid #ccc;
    border-radius: 5px;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 80px;
}

.tech-request-table-widget .remove-button:hover {
    background-color: rgb(255, 0, 0);
}

.tech-request-table-widget .add-button {
    background-color: rgb(13, 153, 0);
    border: 1px solid #ccc;
    border-radius: 5px;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 80px;
}

.tech-request-table-widget .add-button:hover {
    background-color: rgb(255, 0, 0);
}

.tech-request-table-widget .purchased-button {
    background-color: rgb(13, 153, 0);
    border: 1px solid #ccc;
    border-radius: 5px;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 80px;
}

.tech-request-table-widget .purchased-button:hover {
    background-color: rgb(255, 0, 0);
}

.tech-request-table-widget .update-button {
    background-color: rgb(13, 153, 0);
    border: 1px solid #ccc;
    border-radius: 5px;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 80px;
}

.tech-request-table-widget .update-button:hover {
    background-color: rgb(255, 0, 0);
}

.tech-request-table-widget .approval-cell {
    display: flex;
    align-items: center; /* Vertically center items */
}

.tech-request-table-widget .approval-select {
    margin-right: 10px; /* Space between the select and button */
}

.tech-request-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tech-request-header caption {
    margin: 0;
    padding: 0;
    font-size: 1.2em;
    font-weight: bold;
}

.tech-request-header input {
    padding: 5px;
    font-size: 1em;
    width: 200px;
}

/* **************************** Tech Request Page End **************************** */

/* **************************** Tech Support Page **************************** */

.tech-support-container {
    width: 100%;
    height: auto;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin: auto auto;
}

/* Request Table Styles*/
.tech-support-table-widget  :root {
    --background: #EBECF0;
    --table-background: #FFFFFF;
    --primary: #101824;
    --gray: #A0A7B1;
    --odd-row: #f6f9ff;
    --gray-background: #EDEEF1;
    --gray-mid: #F1F2F6;
}


.tech-support-table-widget {
    flex: 1;
    border-radius: 16px;
    background-color: var(--table-background);
    padding: 24px;
    border: 2px solid var(--gray-background);
    box-shadow: 
     rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
     rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    text-align: left;
    overflow-x: auto;
    margin: 100px auto auto auto;
    position: relative;
}

.tech-support-table-widget a {
    color: #696969;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s; 
}


.tech-support-table-widget table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}

.tech-support-table-widget caption {
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    margin: 8px 0px;
}

.tech-support-table-widget th {
    padding: 20px 16px;
    font-size: 16px;
    color: #000000;
}

.tech-support-table-widget thead {
    border-top: 2px solid var(--gray-background);
}

.tech-support-table-widget tfoot {
    margin-top: 16px;
    border-top: 2px solid var(--gray-background);
}

.tech-support-table-widget td {
    padding: 8px 16px;
    overflow-wrap: break-word;
    font-size: 16px;
}

.tech-support-table-widget tbody tr {
    cursor: pointer;
    animation: fadeIn 0.5s ease-in-out;
}

.tech-support-table-widget tbody tr:nth-child(odd) {
    background-color: var(--odd-row);
}

.tech-support-table-widget tbody tr:hover {
    background-color: #e2ecff;
}

.tech-support-table-widget select{
    width: 100%; /* Take up the full width of the container */
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.tech-support-table-widget .table-row-count {
    font-size: 16px;
    font-weight: 700;
    background-color: var(--odd-row);
    padding: 8px;
    display: inline-flex;
    align-items: center;
    margin-left: 16px;
    border-radius: 8px;
}

.tech-support-table-widget .tag::first-letter {
    text-transform: uppercase;
}

.tech-support-table-widget input[type="text"] {
    width: 100%; /* Take up the full width of the container */
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box; 
}

/* Style for placeholders in input fields */
.tech-support-table-widget input::placeholder {
color: #999; 
}

/* Style for focused input fields */
.tech-support-table-widget input:focus {
border-color: #0f7d00;
outline: none;
}

.tech-support-table-widget .tech-support-textarea {
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
    resize: vertical; /* Allows vertical resizing */
    white-space: pre-wrap; /* Enables text wrapping */
}

.tech-support-table-widget .remove-button {
    background-color: rgb(13, 153, 0);
    border: 1px solid #ccc;
    border-radius: 5px;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 80px;
}

.tech-support-table-widget .remove-button:hover {
    background-color: rgb(255, 0, 0);
}

.tech-support-table-widget .add-button {
    background-color: rgb(13, 153, 0);
    border: 1px solid #ccc;
    border-radius: 5px;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 80px;
}

.tech-support-table-widget .add-button:hover {
    background-color: rgb(255, 0, 0);
}

.tech-support-table-widget .purchased-button {
    background-color: rgb(13, 153, 0);
    border: 1px solid #ccc;
    border-radius: 5px;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 80px;
}

.tech-support-table-widget .purchased-button:hover {
    background-color: rgb(255, 0, 0);
}

.tech-support-table-widget .update-button {
    background-color: rgb(13, 153, 0);
    border: 1px solid #ccc;
    border-radius: 5px;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 80px;
}

.tech-support-table-widget .update-button:hover {
    background-color: rgb(255, 0, 0);
}

.tech-support-table-widget .approval-cell {
    display: flex;
    align-items: center; /* Vertically center items */
}

.tech-support-table-widget .approval-select {
    margin-right: 10px; /* Space between the select and button */
}

.tech-support-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tech-support-header caption {
    margin: 0;
    padding: 0;
    font-size: 1.2em;
    font-weight: bold;
}

.tech-support-header input {
    padding: 5px;
    font-size: 1em;
    width: 200px;
}


/* **************************** Tech Support Page End **************************** */

/* **************************** Support Detail Page **************************** */
/* Base styles for the main section */
.ticket-detail-main-section {
    background-color: #eaeaea;
    color: rgb(0, 0, 0);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 25px;
    padding: 40px; 
    margin-top: 120px;
}

/* Tech Detail Container */
.tech-detail-container {
    width: 100%;
    max-width: 1200px;
    height: auto;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin: auto auto;
    background-color: #f9f9f9;
}

/* Style for the Opened By section */
.tech-detail-container .line-container {
    display: flex;
    align-items: center; /* Ensures vertical alignment */
    justify-content: flex-start;
    margin-bottom: 20px;
    font-size: 16px;
}

.tech-detail-container .line-container label {
    margin-right: 30px; /* Adjust space between label and input box */
    font-size: 16px;
}

.tech-detail-container .line-container input {
    font-size: 16px;
}

.tech-detail-container .line-container select {
    font-size: 16px;
}

.tech-detail-container .line-container h3 {
    margin: 0; /* Remove default margin */
    padding-right: 10px; /* Space between heading and input */
}

.tech-detail-container p {
    font-size: 16px;
    margin: 10px;
}
/* Two Column Layout */
.two-column-layout {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* Space between columns */
}

/* Column Styles */
.column {
    flex: 1; /* Equal width for columns */
    padding: 15px; /* Padding within columns */

}

/* Textarea Styles */
.short-description-textarea,
.description-textarea,
.comment-textarea {
    width: 100%; /* Full width */
    height: 100px; /* Set height */
    border-radius: 4px; /* Rounded corners */
    padding: 10px; /* Internal padding */
    border: 1px solid #ccc; /* Border style */
    resize: none; /* Disable resizing */
    font-size: 16px;
}

/* Button Styles */
button {
    background-color: rgb(13, 153, 0); /* Primary color */
    color: #ffffff; /* Text color */
    border: none; /* Remove default border */
    border-radius: 4px; /* Rounded corners */
    padding: 10px 15px; /* Padding */
    cursor: pointer; /* Pointer cursor on hover */
    font-size: 16px; /* Font size */
    margin: 20px; /* Space between buttons */
}


/* **************************** Tech Detail Page End **************************** */

/* **************************** Mobile Settings **************************** */
/* Hide mobile nav on desktop */
@media (min-width: 811px) {
    nav.mobile-nav {
        display: none; 
    }

    .menu-toggle {
        display: none; 
    }
}

/* Mobile Styles */
@media (max-width: 810px) {
    header {
        flex-direction: column; 
        width: 100%; 
    }

    nav.desktop-nav {
        display: none; 
    }

    nav.mobile-nav {
        display: flex;
        width: 100%; 
    }

    /* Mobile styles for nav links */
    nav.mobile-nav ul {
        display: none; 
        flex-direction: column; 
        position: absolute; 
        top: 60px; 
        left: 0; 
        right: 0; 
        background: black; 
        width: 100%; 
        z-index: 999; 
        padding-top: 10px; 
    }

    nav ul {
        flex-direction: column; 
        align-items: center; 
        margin: 0; 
    }

    nav ul li {
        margin-left: 0; 
        margin-bottom: 10px; 
    }

    .main-section {
        padding: 20px; 
        font-size: 18px; 
    }

    .logo-container {
        padding: 20px; 
    }

    .logo-container h1 {
        font-size: 24px; 
        margin: 10px 0; 
    }

    .logo-container h2 {
        font-size: 18px; 
        margin: 20px 0 0 0; 
    }

    .options-container button {
        width: 80%; 
        font-size: 16px; 
    }
}
.expsense-container {
    margin: 150px auto 20px auto;
}

.support-form-container {
    margin: 150px auto 20px auto;
}

.profile-card {
    margin: 150px auto 20px auto;
}

.user-request-table-widget {
    margin: 150px auto 20px auto;
}


.user-support-table-widget {
    margin: 150px auto 20px auto;
}

.user-update-table-widget {
    width: 100%;
    
}

.user-update-table-widget th {
    padding: 5px 5px;
    font-size: 12px;
    color: #000000;
}
.approval-table-widget {
    margin: 150px auto 20px auto;
}
.user-profile-page-container
    {
        margin: 150px auto 20px auto;
    }

.tech-request-table-widget {
    margin: 150px auto 20px auto;
}

.tech-support-table-widget {
    margin: 150px auto 20px auto;
}

.hide-on-mobile {
    display: none;
}
/* **************************** Mobile Settings End **************************** */