/* General body styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #a6f0ff, #c3ebff);
    margin: 0;
    padding: 20px;
    color: #333;
}

/* Container styling */
.container {
    max-width: 650px;
    margin: 0 auto;
    padding: 30px 40px;
    background: #ffffffcc; /* slightly transparent for depth */
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

/* Titles */
h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2em;
    color: #026670;
    letter-spacing: 1px;
}

h3 {
    margin-bottom: 12px;
    color: #026670;
    font-weight: 600;
}

/* Inputs, buttons, textarea */
input, button, textarea {
    width: 100%;
    margin-bottom: 18px;
    padding: 12px 15px;
    font-size: 15px;
    box-sizing: border-box;
    border-radius: 8px;
    border: 1px solid #b0d4de;
    transition: all 0.3s ease;
}

input[type="file"],
input[type="file"]::file-selector-button,
input[type="checkbox"] {
    cursor: pointer;
}

/* Input focus effect */
input:focus, textarea:focus {
    outline: none;
    border-color: #028090;
    box-shadow: 0 0 10px rgba(2, 128, 144, 0.2);
}

/* Button styling */
button {
    margin-top: 10px;
    cursor: pointer;
    background: #01acce;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 10px;
}

button:hover {
    background: #028090;
}

/* Textarea specific styling */
textarea {
    height: 160px;
    resize: none;
    border-radius: 10px;
    background: #f0f8ff;
}

/* Download links styling */
#downloadLinks a {
    display: inline-block;
    margin-bottom: 8px;
    padding: 5px 12px;
    color: #01acce;
    text-decoration: none;
    border-radius: 8px;
}

#downloadLinks details a {
    padding: 5px 12px;
    margin: 0;
}

#downloadLinks a:hover {
    color: #028090;
}

/* Details styling */
details summary {
    cursor: pointer;
    font-weight: 500;
    color: #026670;
    margin-bottom: 5px;
}

details summary::-webkit-details-marker {
    display: none;
}

/* Label alignment */
label {
    display: flex;
    align-items: center;
    font-size: 15px;
    margin-bottom: 12px;
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    cursor: pointer;
}

.checkbox-label:hover {
    color: #111;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0px 10px;
}


.field-with-toggle {
    margin-bottom: 20px;
}

.field-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.field-label label {
    font-weight: 500;
    color: #026670;
}

.field-label input[type="checkbox"] {
    transform: scale(1.2);
    cursor: pointer;
}
