.btn-orange {
    background-color: #f97316; /* oranye */
    border: 1px solid #ea580c;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    margin: 0 4px;
    font-weight: bold;
    user-select: none;
    transition: background-color 0.3s ease;
}

.btn-orange:hover {
    background-color: #ea580c;
}

.btn-disabled {
    color: #9ca3af; /* abu-abu */
    border: 1px solid #d1d5db;
    padding: 8px 16px;
    border-radius: 4px;
    margin: 0 4px;
    user-select: none;
    cursor: default;
    font-weight: bold;
    display: inline-block;
}

.current-page {
    padding: 8px 16px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    color: #374151; /* abu-abu gelap */
    font-weight: bold;
    margin: 0 4px;
    display: inline-block;
}