/* Container untuk Sidebar */
.sidebar-menu-jdk {
    background: linear-gradient(135deg, #e69500, #ffcc00); /* Gradasi warna oranye */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Styling untuk Daftar Menu */
.sidebar-menu-jdk ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

/* Styling untuk Setiap Menu Item */
.sidebar-menu-jdk ul li {
    margin-bottom: 10px;
}

.sidebar-menu-jdk ul li a {
    color: #333333; /* Abu-abu tua untuk kontras yang baik */
    text-decoration: none;
    font-size: 1em;
    font-weight: bold;
    display: block;
    padding: 10px;
    background: rgba(255, 255, 255, 0.2); /* Latar belakang transparan putih */
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: center;
}

/* Hover effect untuk Menu Item */
.sidebar-menu-jdk ul li a:hover {
    background: rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

/* Styling Judul Editorial Team */
.editorial-team {
    margin-top: 20px;
    background: linear-gradient(135deg, #e69500, #ffcc00); /* Gradasi yang sama untuk tim editorial */
    padding: 15px;
    border-radius: 8px;
    color: #333333;
    text-align: center;
}

.editorial-team h3 {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333333; /* Warna abu-abu tua */
}

.editor {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #333333;
}

.editor img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.editor-info {
    font-size: 0.9em;
}

.editor-info a {
    color: #555555; /* Abu-abu medium */
    text-decoration: none;
}

.editor-info a:hover {
    text-decoration: underline;
}
