body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #333;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    flex-wrap: wrap; /* Menambahkan fleksibilitas agar tetap dalam satu baris */
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.5em;
    margin: 0;
}

.buttons {
    display: flex;
    gap: 10px;
    margin-right: 20px;
}

.buttons button {
    background-color: #9E0000;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.buttons button:hover {
    background-color: #777;
}

.content {
    margin-top: 70px; /* Adjust this value if header height changes */
    padding: 20px;
}

@media (max-width: 600px) {
    .header {
        flex-wrap: nowrap; /* Tetap di satu baris */
    }

    .logo img {
        height: 30px; /* Ukuran logo lebih kecil */
    }

    .logo h1 {
        font-size: 1.2em; /* Ukuran teks lebih kecil */
    }

    .buttons {
        gap: 5px;
        margin-right: 0; /* Hilangkan margin pada layar kecil */
    }

    .buttons button {
        padding: 8px 10px; /* Ukuran tombol lebih kecil */
    }
}
