body,
html {
    height: 100%;
}

.form-container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-box {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.user-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-container p {
    margin: 0;
}

.actions-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.logout-icon {
    margin-left: auto;
}

.staff-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 12px;
}

.actions-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.toast {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 98%;
    padding: 16px 24px;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease, transform 0.3 ease;
    opacity: 1;
}

.toast.success {
    background-color: #28a745;
}

.toast.error {
    background-color: #dc3545;
}

.hours-container {
    display: flex;
    flex-direction: row;
}

#dynamic-container {
    height: 100%;
}