body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
   
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: white;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0; /* Adjust padding as needed */
    width: 100%;
}

.menu-logo {
    width: 300px; /* Adjust the size as needed */
    height: auto;
}

.main-content {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow-y: auto; /* Allow vertical scrolling */
    padding-bottom: 60px; /* Prevent content from overlapping with the bottom navbar */
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.heading {
    text-align: center;
    margin: 3px 0; /* Adjust the space as needed */
    font-weight: bold; /* Make the text bold */
}

form {
    width: 100%;
    max-width: 300px;
    margin: auto;
    padding: 20px;
}

button {
    font-size: 16px;
    background: linear-gradient(145deg, #2a9d8f, #4ade80);
    color: white;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 500;
    box-shadow: 4px 4px 15px rgba(42, 157, 143, 0.3),
                    2px 2px 8px rgba(0, 0, 0, 0.5),
                    5px 5px 12px rgba(128, 0, 128, 2); /* Adjusted purple dropshadow for visibility to bottom right */
    transition: all 0.3s ease;
    display: inline-block;
    margin: 10px auto;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.5px;
    min-width: 150px;
    position: relative;
    overflow: hidden;
}
button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 157, 143, 0.4),
                    0 4px 12px rgba(0, 0, 0, 0.5),
                    0 10px 12px rgba(42, 157, 143, 1);
    background: linear-gradient(145deg, #31b3a3, #52e890);
}
.button-container {
    width: 100%;
    max-width: 800px;
    margin: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: -12px; /* Reduced from 10px to 2px (80% reduction) */
}

.dashboard-button {
    font-size: 16px;
    background: linear-gradient(145deg, #2a9d8f, #4ade80);
    color: white;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 500;
    box-shadow: 4px 4px 15px rgba(42, 157, 143, 0.3),
                    2px 2px 8px rgba(0, 0, 0, 0.5),
                    5px 5px 12px rgba(128, 0, 128, 2); /* Adjusted purple dropshadow for visibility to bottom right */
    transition: all 0.3s ease;
    display: inline-block;
    margin: 10px auto;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.5px;
    min-width: 150px;
    position: relative;
    overflow: hidden;
}

.dashboard-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 157, 143, 0.4),
                    0 4px 12px rgba(0, 0, 0, 0.5),
                    0 10px 12px rgba(42, 157, 143, 1);
    background: linear-gradient(145deg, #31b3a3, #52e890);
}

.button {
    font-size: 16px;
    background: linear-gradient(145deg, #2a9d8f, #4ade80);
    color: white;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 500;
    box-shadow: 4px 4px 15px rgba(42, 157, 143, 0.3),
                    2px 2px 8px rgba(0, 0, 0, 0.5),
                    5px 5px 12px rgba(128, 0, 128, 2); /* Adjusted purple dropshadow for visibility to bottom right */
    transition: all 0.3s ease;
    display: inline-block;
    margin: 10px auto;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.5px;
    min-width: 150px;
    position: relative;
    overflow: hidden;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 157, 143, 0.4),
                    0 4px 12px rgba(0, 0, 0, 0.5),
                    0 10px 12px rgba(42, 157, 143, 1);
    background: linear-gradient(145deg, #31b3a3, #52e890);
}

.button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(42, 157, 143, 0.2),
                0 1px 4px rgba(0, 0, 0, 0.1);
}

.bottom-navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f8f9fa;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
    padding: 8px 0;
    z-index: 1000;
}

.nav-item {
    text-decoration: none;
    color: black;
    font-weight: bold;
    text-align: center;
    display: block;
    white-space: normal;
    font-size: 0.75rem;
    line-height: 1; /* Reduces the default line height */
    padding: 0 10px; /* Add padding to ensure the border doesn't touch the icons/text */
    position: relative;
}

.nav-item ion-icon {
    font-size: 1.7rem;
    display: block;
    margin: 0 auto;
    margin-bottom: -10px; /* Adjusts spacing between icon and text */
    color: black;
}

.nav-item.active, .nav-item.active ion-icon {
    color: purple; /* Sets both text and icon color to purple */
}

.table-container {
    text-align: center; /* This will center the title and the table within the container */
}
table {
    width: 80%;
    margin: auto;
    border-collapse: collapse;
    text-align: left;
    
}

th, td {
    border-bottom: 1px solid white; /* Add border to each cell */
    padding: 8px; /* Add some padding for text inside cells */
    color: white;
}

th {
    background-color: #4CAF50; /* Add a background color to header cells if you like */
    color: white;
}

.hide-column {
    display: none; /* This class can be used to hide columns */
}

.styled-table {
    width: 95%;
    margin: auto;
    border-collapse: collapse;
    text-align: center;
}

.styled-table, .styled-table th, .styled-table td {
    border: 1px solid rgba(255, 255, 255, 0.13);
}

.styled-table th, .styled-table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 8px;
}

.styled-table th {
    background-color: purple;
    color: white;
}

.styled-table tr:nth-child(even) {
    background-color: #333333;
}

.styled-table tr:nth-child(odd) {
    background-color: #000000;
}

.logo-container {
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    height: 300px;
}

.logo-container img {
    width: 125%;
    margin-left: -10%;
    height: 100%;
    object-fit: cover;
    display: block;
}
