body {
    font-family: 'Roboto', sans-serif;
    background-color: #f7f9fc;
    color: #2c3e50;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 700px;
    margin: auto;
    padding: 20px;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.settings-icon img {
    width: 30px;
    height: auto;
}

.language-switch a {
    margin-left: 10px;
    font-weight: bold;
    color: #007bff;
    text-decoration: none;
}

.language-switch a:hover {
    text-decoration: underline;
}

h1, h2 {
    text-align: center;
    color: #1a1a1a;
}

.card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 2px;
    margin-bottom: 20px;
}

.shadow {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th, table td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

table th {
    background-color: #f0f4f8;
}

label {
    font-weight: bold;
    margin-top: 15px;
    display: block;
}

input[type="number"],
select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

input[type="submit"] {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
    width: 100%;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Responsivt */
@media (max-width: 600px) {
    .container {
        padding: 10px;
    }

    input[type="submit"] {
        font-size: 14px;
    }
}
