/* Reset & Body */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: #f0f2f5;
    color: #1c1e21;
}

/* Layout */
.container {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h1, h2 { color: #0056b3; }
h1 { margin-bottom: 20px; }
h2 { margin-top: 0; }

/* Tombol & Link */
a { color: #007bff; text-decoration: none; }
a:hover { text-decoration: underline; }
.btn-tambah, .btn-baca, .back-link {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.2s, transform 0.2s;
}
.btn-tambah { background: #007bff; color: #fff; }
.btn-tambah:hover { background: #0069d9; transform: translateY(-1px); }
.btn-baca { background: #f0f2f5; color: #333; }
.back-link { margin-top: 20px; background: #6c757d; color: #fff; }

/* Daftar Berita (berita.php) */
.item-berita {
    padding: 20px;
    border-bottom: 1px solid #ddd;
}
.item-berita:last-child { border-bottom: none; }
.item-berita .tanggal { font-size: 0.9em; color: #606770; margin-bottom: 10px; display: block; }

/* Formulir (tambah_berita.php) */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: bold; margin-bottom: 8px; }
.form-group input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
}
#submitBtn {
    background: #28a745; color: #fff; padding: 12px 25px; border: none;
    border-radius: 6px; cursor: pointer; font-size: 1em; font-weight: bold;
}
#submitBtn:disabled { background: #aaa; cursor: not-allowed; }

/* Drag & Drop */
#drop-zone {
    border: 2px dashed #ccc; border-radius: 8px; padding: 40px; text-align: center;
    color: #555; cursor: pointer; transition: all 0.3s;
}
#drop-zone.drag-over { border-color: #007bff; background-color: #f0f8ff; }
#previews {
    margin-top: 15px; display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 15px;
}
.file-preview-wrapper {
    border: 1px solid #ddd; border-radius: 8px; padding: 10px;
    background: #f9f9f9; position: relative;
}
.file-preview-thumbnail { width: 100%; height: 100px; object-fit: cover; border-radius: 5px; }
.file-info p { margin: 5px 0 0; font-size: 0.9em; word-break: break-all; }
.file-info small { color: #666; }
.remove-btn {
    position: absolute; top: 5px; right: 5px; width: 24px; height: 24px;
    background: rgba(0,0,0,0.6); color: white; border: none; border-radius: 50%;
    cursor: pointer; font-size: 16px; line-height: 24px; text-align: center;
}

/* Progress Bar */
#progress-container { margin-top: 15px; }
.progress-bar { width: 100%; background-color: #e9ecef; border-radius: 5px; overflow: hidden; height: 20px; }
#progress-bar-inner { height: 100%; width: 0; background-color: #28a745; transition: width 0.4s ease; }
#progress-text { margin-left: 10px; font-weight: bold; }

/* Berita Lengkap & Media */
.berita-lengkap { border-bottom: 1px solid #ddd; padding-bottom: 20px; }
.konten-berita { margin-top: 20px; }
.konten-berita img { max-width: 100%; height: auto; border-radius: 8px; }
.galeri-media { margin-top: 20px; }
.media-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 15px; }
.media-container img, .media-container video { width: 100%; border-radius: 8px; }

/* Modal Kustom */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); display: flex; justify-content: center; align-items: center;
    z-index: 1000; opacity: 0; visibility: hidden; transition: all 0.3s;
}
.modal-overlay.visible { opacity: 1; visibility: visible; }
.modal-content {
    background: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: center; max-width: 400px; width: 90%; transform: scale(0.9); transition: transform 0.3s;
}
.modal-overlay.visible .modal-content { transform: scale(1); }
.modal-content p { margin: 0 0 20px 0; font-size: 1.1em; line-height: 1.5; }
.modal-buttons { display: flex; justify-content: center; gap: 15px; }
.modal-buttons button { padding: 10px 25px; border: none; border-radius: 5px; cursor: pointer; font-size: 1em; font-weight: bold; }
.modal-button-confirm { background-color: #007bff; color: white; }
.modal-button-cancel { background-color: #6c757d; color: white; }

/* Gaya untuk Kontainer Gambar Pratinjau di berita.php */
.preview-gambar-container {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.preview-gambar-container img {
    /* PERUBAHAN: Ukuran thumbnail diperkecil lagi */
    width: 80px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #eee;
}

