/* Basic global styles mimicking original globals.css and layout.tsx styling */
body {
    background-color: #ffffff;
    color: #171717;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.header {
    background-color: #213F73;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.footer {
    background-color: #213F73;
    color: white;
    text-align: center;
    padding: 0.5rem;
    margin-top: 2rem;
}

.welcome {
    font-weight: bold;
}

button {
    cursor: pointer;
}

button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}