/* Custom CSS for sidebar menu */

#customblock-menusidebar .content {
    font-family: Arial, sans-serif;
}

.edwinhap-menu-title {
    color: #D5E13A; /* Dominant color for titles */
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.blockcustom1 {
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.blockcustom1 a {
    text-decoration: none;
    color: #333; /* Dark color for links */
    display: block;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.blockcustom1 a:hover {
    background-color: #D5E13A; /* Highlight on hover */
    color: #fff; /* White text on hover */
}

.blockcustom1 a:focus {
    outline: none;
    background-color: #B4C82B; /* Slightly darker green for focused link */
}

.edwinhap-image-hover {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.edwinhap-image-hover:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.edwinhap-image-hover img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

h1.edwinhap-menu-title {
    font-size: 24px;
    margin-bottom: 12px;
}

p {
    margin: 8px 0;
}

/* Home page styling */
.home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.home-container h1, .home-container h2, .home-container h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.home-container p {
    margin-bottom: 15px;
    text-align: justify;
}

.home-container ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.home-container ol li {
    margin-bottom: 10px;
    text-align: justify;
}

/* Table styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

table thead {
    background-color: #D5E13A;
    color: #2c3e50;
}

table th, table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

table th {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

table tbody tr {
    transition: background-color 0.3s ease;
}

table tbody tr:hover {
    background-color: #f8f9fa;
}

table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

table tbody tr:nth-child(even):hover {
    background-color: #f0f0f0;
}
/* Table styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    table-layout: auto; /* Memungkinkan lebar kolom otomatis menyesuaikan konten */
}

table thead {
    background-color: transparent; /* Menghapus warna latar belakang */
    color: #2c3e50;
}

table th, table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

table th {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Responsif untuk perangkat dengan lebar layar maksimal 768px */
@media (max-width: 768px) {
    table {
        font-size: 14px;
    }

    /* Mengubah padding pada tabel untuk lebih rapat pada layar kecil */
    table th, table td {
        padding: 8px 10px;
    }

    /* Menambahkan scrollbar horizontal untuk tabel di layar kecil */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Mengatur ulang lebar tabel agar lebih sesuai dengan tampilan */
    table td, table th {
        word-wrap: break-word;
        white-space: normal;
    }
}


/* Special styling for journal title */
.journal-title {
    color: #D5E13A;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Content sections */
.content-section {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.scope-list {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #D5E13A;
}
 