body {
    font-family: 'Roboto', sans-serif;
    background-color: #a8c1b5;
    margin: 0;
    padding: 0;
    color: #333;
}

nav {
    background-color: #333;
    padding: 10px;
}

nav a {
    color: white;
    text-decoration: none;
    margin-right: 10px;
}

.card {
    background-color: white;
    border-radius: 5px;
    padding: 20px;
    margin: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 300px;
    margin: 0 auto;
}

input[type="text"],
input[type="password"],
input[type="date"],
input[type="time"] {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 3px;
}

.alert {
    background-color: #f8d7da;
    color: #721c24;
    padding: 10px;
    margin: 10px 0;
    border-radius: 3px;
}

.logo-container {
    text-align: center;
    padding: 10px 0;
}

.app-logo {
    max-width: 150px;  /* Adjust this value to fit your logo size */
    height: auto;
}

.language-buttons {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.flag-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #ccc;
    transition: transform 0.3s;
}

.flag-button:hover {
    transform: scale(1.1);
}

.button-text {
    font-size: 14px;
    font-weight: bold;
}

.logo {
    display: block;
    margin: 0 auto;
    max-width: 200px;  /* Adjust as needed */
}

.container {
    max-width: 100%;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 14px;
}

th, td {
    padding: 8px;
    border-bottom: 1px solid #ddd;
    text-align: left;
    white-space: nowrap;
}

th {
    background-color: #f2f2f2;
}

.back-button {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 24px;
    color: #333;
    text-decoration: none;
}

h1, h2 {
    text-align: center;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .container {
        border-radius: 0;
        padding: 10px;
    }

    table {
        font-size: 12px;
    }

    th, td {
        padding: 6px;
    }

    h1, h2 {
        font-size: 1.5em;
        margin-top: 40px;
    }
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.input-group .input-field {
    flex: 1;
}

@media (max-width: 480px) {
    .input-group {
        flex-direction: column;
    }
}
