/* ======== PAGE WRAPPER ======== */
.staffing-request-container {
    max-width: 700px;
    margin: 30px auto;
    padding: 25px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

.request{
    margin-top: 40px;
}

/* ======== TITLE ======== */
.request h1 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 10px;
}

.request p {
    text-align: center;
    color: #555;
    margin-bottom: 25px;
}

/* ======== FORM ======== */
.staff-request-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.staff-request-form label {
    font-weight: bold;
    margin-bottom: 5px;
}

.staff-request-form input,
.staff-request-form select,
.staff-request-form textarea {
    width: 90%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    transition: 0.2s ease;
}

/* Hover & focus effects */
.staff-request-form input:focus,
.staff-request-form select:focus,
.staff-request-form textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
    outline: none;
}

.staff-request-form textarea {
    height: 120px;
    resize: vertical;
}

/* ======== BUTTON ======== */
.submit-btn {
    padding: 14px;
    background: #007bff;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s ease;
}

.submit-btn:hover {
    background: #0056b3;
}

/* SUCCESS MESSAGE STYLE */
.success-box {
    padding: 12px;
    background: #d6ffe2;
    border-left: 4px solid green;
    margin-bottom: 20px;
    font-size: 15px;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 600px) {
    .staffing-request-container {
        margin: 15px;
        padding: 20px;
    }

    h1 {
        font-size: 22px;
    }
}
