/* Gaya Umum */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Kontainer utama */
.container {
    margin-top: 15rem;
    width: 100%;
    max-width: 500px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Kotak formulir */
.form-box {
    text-align: center;
}

/* Judul */
h2 {
    margin-bottom: 20px;
    font-size: 22px;
    color: #333;
}

/* Grup input */
.input-group {
    text-align: left;
    margin-bottom: 15px;
}

.input-group label {
    font-size: 14px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #555;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    width: 30rem;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.input-group textarea {
    font-family: 'Arial', sans-serif;
    height: 80px;
    resize: none;
}

/* Tombol */
.btn {
    width: 100%;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

.btn:hover {
    background-color: #0056b3;
}

/* Kontainer utama untuk form data perusahaan */
.data-perusahaan-container {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 600px;
}

/* Judul halaman */
h2 {
    text-align: center;
    color: #333;
}

/* Kotak pertanyaan */
.question-box {
    margin-bottom: 15px;
}

.question-box label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #444;
}

/* Input teks area */
.question-box textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical;
}

/* Tombol submit */
.submit-button {
    display: block;
    width: 100%;
    background-color: #007bff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background-color: #0056b3;
}
textarea {
 max-height: 30px;
 max-width: 35rem;
 font-size: 15px;
}

/* Container utama */
.kuesioner-container {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 700px;
    text-align: center;
}

/* Judul */
h2 {
    color: #333;
    margin-bottom: 10px;
}

/* Subjudul */
.subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* Kotak pertanyaan */
.question-box {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: left;
}

/* Label pertanyaan */
.question-box h3 {
    font-size: 16px;
    color: #444;
    margin-bottom: 8px;
}

/* Input file */
.file-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fff;
    cursor: pointer;
}

/* Label radio dan checkbox */
.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 8px;
    border-radius: 5px;
    margin-bottom: 5px;
    cursor: pointer;
    transition: 0.2s;
}

.radio-label input,
.checkbox-label input {
    margin-right: 10px;
}

.radio-label:hover,
.checkbox-label:hover {
    background: #eaf2ff;
}

/* Pesan jika tidak ada jawaban */
.no-answer,
.no-question,
.info-text {
    font-size: 14px;
    color: #777;
    font-style: italic;
}

/* Tombol submit */
.submit-btn {
    background: #007bff;
    color: white;
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #1e2662;
}

/* Navbar */
.navbar {
    height: 60px;
    width:100%;
    background: #1e2662;
        position: fixed;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    padding: 0 20px;

}
.user-photo {
    width: 30px;
    height: 30px;
    margin-right: 5px;
    padding-right: 20px;
    justify-content: space-between; /* Tulisan ke kiri, logo ke kanan */
  }
  
/* USER INFO */
.user-info {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between; /* Tulisan ke kiri, logo ke kanan */
}
  .username {
    padding: 10px;
    padding-bottom: 5px;
    margin-right: auto; /* Memastikan tulisan tetap di kiri */
  }
.content {
    margin-top: 30rem;
width: 100%;
padding: 100px;
}

select {
    position: relative;
    display: block;
    width: 100%; /* Sesuaikan dengan kebutuhan */
    max-height: 300px; /* Batas tinggi */
    overflow-y: auto;
}

select:focus {
    position: relative;
    z-index: 9999; /* Pastikan muncul di atas elemen lain */
}


/* FORM BOX */
.form-box h2 {
    margin-bottom: 15px;
    color: #333;
}

/* INPUT GROUP */
.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    color: #555;
}

.input-group textarea {
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    resize: none;
    transition: all 0.3s ease;
    
}

.input-group textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0px 0px 8px rgba(0, 123, 255, 0.3);
}

/* BUTTON */
.btn {
    font-family: 'Arial', sans-serif;
    display: inline-block;
    width: 100%;
    padding: 12px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #0056b3;
}

/* ERROR MESSAGE */
.error {
    font-family: 'Arial', sans-serif;
    background: #ff6b6b;
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}

/* CONTAINER UTAMA */
.thank-you-container {
    font-family: 'Arial', sans-serif;

    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* BOX UTAMA */
.thank-you-box {
    font-family: 'Arial', sans-serif;

    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 90%;
}



/* JUDUL */
.thank-you-box h2 {
    font-family: 'Arial', sans-serif;

    font-size: 24px;
    color: #333;
}

/* PARAGRAF */
.thank-you-box p {
    font-family: 'Arial', sans-serif;

    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}