.result-data-container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.result-title {
    text-align: center;
    color: #ffd700;
    margin-bottom: 20px;
}

.search-control {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
}

.pasaran-select {
    padding: 10px;
    border-radius: 5px;
    background: #333;
    color: #fff;
    border: 1px solid #ffd700;
    min-width: 150px;
}

.fetch-btn {
    padding: 10px 20px;
    background: #ffd700;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.table-wrapper {
    overflow-x: auto;
}

.result-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.result-table th,
.result-table td {
    padding: 12px;
    text-align: center;
    border: 1px solid #ffd700;
    color: #fff;
}

.result-table th {
    background: #333;
    color: #ffd700;
}

.result-number {
    font-weight: bold;
    color: #ffd700;
}

@media (max-width: 768px) {
    .search-control {
        flex-direction: column;
    }
    
    .pasaran-select,
    .fetch-btn {
        width: 100%;
    }
}


/* css next result */

.pagination-control {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.pagination-btn {
    background-color: #FFD700;
    color: #000;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    /* background-color: #FFC107; */
    background-color: #ff1707;
}

.pagination-btn.active {
    /* background-color: #FFC107; */
    background-color: #ff1707;
    cursor: default;
    pointer-events: none;
}

@media (max-width: 768px) {
    .pagination-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
}