/* Reset dasar untuk memulai */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f7fa;
    color: #333;
    line-height: 1.6;
}

/* Container Utama */
.container {
    max-width: 800px;
    margin: 50px auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Judul Halaman */
h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    font-size: 2.5em;
}

/* Form Group */
.form-group {
    margin-bottom: 20px;
}

/* Label untuk Form */
label {
    font-weight: bold;
    font-size: 1.1em;
    display: block;
    margin-bottom: 8px;
    color: #555;
}

/* Input dan Textarea */
input[type="text"],
textarea,
select {
    width: 100%;
    padding: 12px;
    font-size: 1em;
    border: 2px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
textarea:focus,
select:focus {
    border-color: #4CAF50;
    outline: none;
}

/* Textarea */
textarea {
    height: 150px;
    resize: vertical;
}

/* Tombol */
button {
    background-color: #4CAF50;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 1.1em;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #45a049;
}

/* Pesan Sukses dan Error */
.success, .error {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}

.success {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}

.error {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
}

/* Pilihan Ganda (Multiple Choice) */
#multiple-choice-options {
    margin-top: 20px;
}

#multiple-choice-options .form-group {
    margin-bottom: 15px;
}

#multiple-choice-options input {
    width: calc(100% - 24px);
    display: inline-block;
}
.download-btn {
  position: fixed;
    bottom: 20px; /* Distance from the bottom */
    right: 20px; /* Distance from the right */
    background-color: #ff0000; /* Button color */
    color: white; /* Text color */
    border: none;
    padding: 10px 15px;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-size: 11px;
    transition: background-color 0.3s, transform 0.2s;
    z-index: 1000; /* Ensure it's on top of other elements */
}

.download-btn:hover {
    background-color: #45a049;
}
.download-btn1 {
  position: fixed;
    bottom: 20px; /* Distance from the bottom */
    right: 20px; /* Distance from the right */
    background-color: #007bff; /* Button color */
    color: white; /* Text color */
    border: none;
    padding: 10px 15px;
    border-radius: 50px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-size: 11px;
    transition: background-color 0.3s, transform 0.2s;
    z-index: 1000; /* Ensure it's on top of other elements */
}

.download-btn1:hover {
    background-color: #45a049;
}
/* Responsif */
@media (max-width: 768px) {
    .container {
        padding: 20px;
        margin: 20px;
    }

    h1 {
        font-size: 2em;
    }

    button {
        font-size: 1em;
    }
}

