#buletin *{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

#buletin {
    background:#f5f6fa;
    font-family:Arial, Helvetica, sans-serif;
    padding:30px;
}

#buletin #dokumen-container{
    width:100%;
    max-width:1400px;
    margin:auto;
    background:#ffffff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

#buletin .table-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
    flex-wrap:wrap;
    gap:15px;
}

#buletin .table-header h2{
    color:#333;
    font-size:24px;
}

#buletin .table-tools{
    display:flex;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

#buletin .show-data{
    display:flex;
    align-items:center;
    gap:10px;
}

#buletin .show-data select{
    padding:8px 12px;
    border:1px solid #ddd;
    border-radius:6px;
    cursor:pointer;
}

#buletin .search-box input{
    width:250px;
    padding:10px 15px;
    border:1px solid #ddd;
    border-radius:6px;
    outline:none;
}

#buletin .search-box input:focus{
    border-color:#007bff;
}

#buletin .table-responsive{
    overflow-x:auto;
}

#buletin table{
    width:100%;
    border-collapse:collapse;
}

#buletin table thead{
    background:#5cb063;
    color:#fff;
}

#buletin table thead th{
    padding:14px;
    text-align: center;
    font-size:14px;
}

#buletin table tbody td{
    padding:14px;
    border-bottom:1px solid #e5e5e5;
    font-size:14px;
}

#buletin table tbody tr:hover{
    background:#f8f9fa;
}

#buletin .action-buttons{
    display:flex;
    gap:8px;
}

#buletin .btn-preview{
    text-decoration:none;
    background:#5cb063;
    color:#fff;
    padding:8px 14px;
    border-radius:5px;
    font-size:13px;
    transition:0.3s;
}

#buletin .btn-preview:hover{
    background:#eecc6c;
}

#buletin .btn-download{
    text-decoration:none;
    background:#5cb063;
    color:#fff;
    padding:8px 14px;
    border-radius:5px;
    font-size:13px;
    transition:0.3s;
}

#buletin .btn-download:hover{
    background:#eecc6c;
}

#buletin .pagination{
    margin-top:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

#buletin .page-info{
    color:#666;
    font-size:14px;
}

#buletin .page-buttons{
    display:flex;
    gap:5px;
}

#buletin .page-buttons button{
    border:none;
    padding:8px 14px;
    background:#f1f1f1;
    border-radius:5px;
    cursor:pointer;
    transition:0.3s;
}

#buletin .page-buttons button:hover{
    background:#ddd;
}

#buletin .page-buttons button.active{
    background:#5cb063;
    color:white;
}

@media(max-width:768px){

    #buletin .table-header{
        flex-direction:column;
        align-items:flex-start;
    }

    #buletin .table-tools{
        width:100%;
        flex-direction:column;
        align-items:flex-start;
    }

    #buletin .search-box{
        width:100%;
    }

    #buletin .search-box input{
        width:100%;
    }

    #buletin .pagination{
        flex-direction:column;
        align-items:flex-start;
    }

    #buletin .action-buttons{
        flex-direction:column;
    }

}