/* Mode kontras tinggi */
.high-contrast {
    background-color: #000 !important;
    color: #fff !important;
}
.high-contrast a {
    color: #0ff !important;
}
/* Styling untuk container tombol tambah materi */
.container {
    text-align: right;
    margin-bottom: 20px;
}

/* Tombol tambah materi */
.btn-add-materi {
    background-color: #4CAF50;  /* Hijau */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
}

.btn-add-materi:hover {
    background-color: #45a049;
}

/* Styling untuk daftar materi */
.materi-list ul {
    list-style-type: none;
    padding: 0;
}

.materi-item {
    background-color: #f9f9f9;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.materi-header {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.materi-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.materi-actions a {
    padding: 6px 12px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
}

.btn-edit {
    background-color: #4CAF50; /* Hijau */
    color: white;
    margin-right: 10px;
}

.btn-edit:hover {
    background-color: #45a049;
}

.btn-delete {
    background-color: #f44336; /* Merah */
    color: white;
}

.btn-delete:hover {
    background-color: #e53935;
}
