/* style.css */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a1a1a;
    color: #e0e0e0;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

h2 {
    color: #ffffff;
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
}

/* 1. Gabungkan definisi .form-container menjadi satu */
.form-container {
    background-color: #2c2c2c;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 400px;
}

/* 2. Pastikan form di dalam container tidak memiliki style putih global */
.form-container form {
    background: none;
    padding: 0;
    margin: 0;
    box-shadow: none;
}

/* Styling Tabel */
table {
    width: 90%;
    margin: 20px auto;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    color: #333; /* Agar teks terbaca di background putih */
}

th, td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align: left;
}

th { background-color: #3498db; color: white; }
tr:nth-child(even) { background-color: #f2f2f2; }

/* Input & Form Elements */
label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #ffffff;
}

input {
    width: 100%;
    padding: 12px;
    border: 1px solid #444;
    border-radius: 6px;
    background-color: #3d3d3d;
    color: white;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 6px;
    margin-top: 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

button:hover { background-color: #357abd; }

a {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #4a90e2;
    text-decoration: none;
    font-weight: bold;
}

/* Styling khusus untuk dropdown */
select {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border: 1px solid #444;
    border-radius: 6px;
    background-color: #3d3d3d; /* Serasi dengan input */
    color: white;              /* Warna teks putih */
    cursor: pointer;
    box-sizing: border-box;
    appearance: none;          /* Menghilangkan gaya default browser */
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 10px top 50%;
    background-size: 12px auto;
}

select:focus {
    outline: none;
    border-color: #4a90e2; /* Warna biru saat diklik */
}

a:hover { text-decoration: underline; }


/* Container utama untuk menutupi seluruh layar */
.bg-container {
    background-image: url('assets/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    width: 100%;
}

/* Lapisan transparansi (overlay) */
.overlay {
    background-color: rgba(0, 0, 0, 0.5); /* Hitam dengan transparansi 50% */
    min-height: 100vh;
    width: 100%;
    padding: 20px;
}



























