/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body & Container */
body {
    background: linear-gradient(to bottom, #7faedb, #d4e3f9);
    font-family: 'CustomFont', sans-serif;
    padding: 20px;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Tabs */
.tabs {
    display: flex;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #7faedb;
}

.tab {
    flex: 1;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    background-color: #f0f8ff;
    border: none;
    color: #444;
    transition: background-color 0.3s;
}

.tab:hover {
    background-color: #e0efff;
}

.tab.active#tab-job {
    background-color: #a5dfb2;
    color: #000;
}

.tab.active#tab-helper {
    background-color: #8ec6ff;
    color: #000;
}

/* Forms */
.form {
    display: none;
    flex-direction: column;
    gap: 12px;
}

.form.active {
    display: flex;
}

/* Inputs, Selects, Textarea */
input, select, textarea {
    width: 100%;
    padding: 10px 12px;
    font-size: 16px;
    border-radius: 8px;
    border: 1.5px solid #ccc;
    transition: border 0.3s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #7faedb;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.photo-label {
    font-size: 15px;
    color: #333;
    margin-top: 10px;
}

/* Hours section */
.hours {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hours label {
    flex: 1 0 100%;
    font-size: 15px;
}

/* Button */
button[type="submit"] {
    background-color: #4488cc;
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #336faa;
}

/* Spinner */
.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #4488cc;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin: 10px auto;
    animation: spin 1s linear infinite;
}

.hidden {
    display: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Result message */
.result-message {
    text-align: center;
    font-size: 15px;
    margin-top: 10px;
    color: #333;
}

/* Responsive */
@media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    .tab {
        font-size: 14px;
        padding: 10px;
    }

    input, select, textarea {
        font-size: 15px;
    }
}
.site-banner {
    background-color: #ffdf91;
    color: #222;
    text-align: center;
    padding: 10px 15px;
    font-size: 15px;
    font-family: 'CustomFont', sans-serif;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.site-footer {
    background-color: #f0f8ff;
    color: #222;
    text-align: center;
    padding: 12px 15px;
    font-size: 14px;
    font-family: 'CustomFont', sans-serif;
    border-radius: 10px;
    margin-top: 25px;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.05);
}

.site-footer a {
    color: #336faa;
    text-decoration: none;
    font-weight: bold;
}

.site-footer a:hover {
    text-decoration: underline;
}
#language-switcher {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 10px auto;
    padding: 10px;
}

#language-switcher img {
    width: 36px;
    height: auto;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

#language-switcher img:hover {
    transform: scale(1.15);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}

@media (max-width: 480px) {
    #language-switcher {
        gap: 12px;
    }

    #language-switcher img {
        width: 30px;
    }
}
