/* ---------- BODY ---------- */
body {
    font-family: Arial, sans-serif;
    max-width: 960px;
    margin: 24px auto;
    padding: 0 12px;
    background-color: rgb(245, 245, 245);
}

/* ---------- HEADER & FOOTER ---------- */
header, footer {
    background: rgba(135,206,235,0.7);
    color: white;
    padding: 1rem;
    text-align: center;
}

/* ---------- FORM CONTENT ---------- */
form{
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
    max-width: 1200px;
    /* margin: 40px auto; */
    padding: 30px;
    background: white;
    border-radius: 7px;
    box-shadow: 0 0 7px rgba(135,206,235,0.7);
}

input, button { padding: 10px; font-size: 14px; }

/* Keep role/location fields visually uniform and aligned */
#role,
#location {
    width: 100%;
    box-sizing: border-box;
    border: 2px solid rgba(135,206,235,0.7);
    border-radius: 6px;
}

/* Match the same treatment for API base input for consistency */
#apiBase {
    width: 100%;
    box-sizing: border-box;
    border: 2px solid #4a90e2;
    border-radius: 6px;
}

button {
    width: auto;
    justify-self: start;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #1f1f1f;
    background-color: #d4af37;
    border: 1px solid #b8941f;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

button:hover {
    background-color: #e1bf4d;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.card { border: 1px solid rgba(135,206,235,0.7); border-radius: 8px; padding: 12px; margin: 10px 0; box-shadow: 0 0 7px rgba(135,206,235,0.7); }
.meta { color: rgba(239,191,4,0.7); font-size: 13px; }

h1 {
    margin-bottom: 8px;
    border: 3px solid rgba(135,206,235,0.7);
    text-align: center;
}
