/* style.css */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

header {
    text-align: center;
    margin-bottom: 30px;
}

header h1 {
    color: #007bff; /* Warna biru DMG (mirip dengan warna yang sering digunakan untuk IT) */
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 5px;
}

header p {
    color: #6c757d;
    font-size: 1.1em;
}

header hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), #007bff, rgba(0, 0, 0, 0));
    margin-top: 15px;
}

.directory-list {
    list-style: none;
    padding: 0;
}

.directory-list li {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 8px;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    transition: background-color 0.3s, border-color 0.3s;
}

.directory-list li:hover {
    background-color: #e2f0ff; /* Light blue on hover */
    border-color: #007bff;
}

.directory-list li a {
    text-decoration: none;
    color: #333;
    font-size: 1.1em;
    font-weight: 500;
    flex-grow: 1; /* Agar link mengisi sisa ruang */
}

.icon {
    font-size: 1.2em;
    margin-right: 10px;
    color: #007bff; /* Warna ikon sama dengan judul */
    display: inline-block;
    width: 20px; /* Lebar tetap untuk ikon */
    text-align: center;
}

footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid #dee2e6;
    color: #6c757d;
    font-size: 0.9em;
}