/* style.css */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@400;700&display=swap');
body {
    font-family: 'Noto Sans Thai', sans-serif;
    background-image: url('../image/background/feedback.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Styles to center content on the page */
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /* Use min-height to allow content to grow */
    margin: 0;
}

.form-container {
    max-width: 800px;
    /* Use the wider max-width */
    width: 100%;
    /* Ensure it's responsive */
    margin: 20px auto;
    /* Adjust margin for top/bottom */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    text-align: left;
    /* Align text left for better readability */
}

.form-container.department-select {
    max-width: 600px;
    text-align: center;
}

.form-container h2 {
    margin-bottom: 20px;
}

.rating-label {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
}


/* Adjust body style for the evaluation form page to not be centered vertically, as it can be longer */

body.evaluation-form-page {
    display: block;
    height: auto;
    min-height: 100vh;
    padding: 50px 0;
    /* Add top and bottom padding */
}