body {
    margin-left: 0px;
    margin-right: 0px;
    padding: 0px;
    width: 100%;
}

/* Hamburger button */
.hamburger-button {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: #333;
    margin: 3px 0;
}

.hamburger-menu {
    position: fixed;
    top: 56px;
    left: 12px;
    z-index: 999;
    display: none;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    min-width: 220px;
}

.hamburger-menu.open {
    display: block;
}

.menu-item {
    width: 100%;
    text-align: left;
    padding: 10px;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 6px;
}

.menu-item:hover {
    background-color: #f5f5f5;
}

.page-title {
    background-color: #0d47a1;
    /* padding: 1rem 2rem; */
    color: white;
    font-size: xx-large;
    width: 100%;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.info-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    /* margin: 2rem auto; */
    margin-top: 0rem;
    margin-bottom: 3rem;

    /* gap: 1rem; */
    /* padding: 0 1rem; */
}

.info-card {
    flex: 1;
    min-width: 0;
}

.info-card button {
    width: 60%;
    padding: 1rem 1rem;
    background-color: hsl(45, 90%, 42%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.0rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.info-card button:hover {
    background-color: #08c13d;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.info-card button h2 {
    margin: 0;
    font-size: 1.0rem;
    font-weight: bold;
}

.hero {
    max-width: 600px;
}

.auth-buttons {
    margin-top: 2rem;
}

.auth-buttons button {
    margin: 0 0.5rem;
    padding: 0.75rem 1.5rem;
    margin-bottom: 10px;
    font-size: 1rem;
    cursor: pointer;
    background-color: #1976d2;
    color: white;
    border: none;
    border-radius: 4px;
}

.auth-buttons button:hover {
    background-color: #0d47a1;
}

footer {
    background-color: #eeeeee;
    padding: 1rem 1rem;
    text-align: center;
    font-size: 0.8rem;
    color: #555;
}


/* Basic Modal Styles */
.modal {
    display: none;
    position: fixed;
    /* Stay in place */
    z-index: 1000;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    /* Could be more or less, depending on screen size */
    max-width: 400px;
    /* Maximum width */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 8px;
    position: relative;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal h2 {
    margin-top: 0;
    text-align: center;
}

.modal form div {
    margin-bottom: 15px;
}

.modal label {
    display: block;
    margin-bottom: 5px;
}

.modal input[type="text"],
.modal input[type="password"] {
    width: calc(100% - 22px);
    /* Adjust for padding and border */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.modal-buttons {
    text-align: right;
}

.modal-buttons button {
    padding: 10px 15px;
    margin-left: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.modal-buttons button[type="submit"] {
    background-color: #d9534f;
    /* Red for delete/submit destructive action */
    color: white;
}

.modal-buttons button[type="button"] {
    background-color: #f0f0f0;
}

#serverResponse {
    padding: 10px;
    border-radius: 4px;
    margin-top: 15px;
    word-break: break-word;
}

/* Responsive design for mobile devices */
@media (max-width: 768px) {
    .info-cards {
        flex-direction: column;
        gap: 0.75rem;
        margin: 1rem auto;
        padding: 0 0.5rem;
    }

    .info-card {
        width: 100%;
        max-width: 400px;
    }

    .info-card button {
        padding: 1.25rem 1rem;
        font-size: 1rem;
    }

    .info-card button h2 {
        font-size: 1rem;
    }
}