/* CONTAINER UTAMA (Wajib ada pembungkus ini agar sejajar) */
.action-buttons {
    display: flex;
    align-items: center;
    gap: 4px; /* Jarak antar tombol */
    justify-content: flex-start;
    white-space: nowrap; /* Mencegah tombol turun ke baris baru */
}

/* BASE SLIM BUTTON (Untuk Tombol Form/Simpan) */
.btn-slim {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px; /* Jarak icon ke teks */
    padding: 6px 14px;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 6px;
    min-width: 80px; /* Diperkecil sedikit agar lebih slim */
    border: none;
    transition: all 0.25s ease;
    cursor: pointer;
    white-space: nowrap;
}

/* BASE MINI CIRCLE (Untuk Tombol Tabel) */
.btn-mini-circle {
    width: 25px !important;
    height: 25px !important;
    padding: 0 !important;
    font-size: 10px !important;
    border-radius: 50% !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

/* WARNA & HOVER EFFECT (Disatukan agar efisien) */
.btn-save, .btn-update, .btn-cancel, .btn-hapus, .btn-edit, .btn-tambah {
    color: #FFFFFF !important;
}

.btn-save   { background-color: #198754; }
.btn-update { background-color: #0d6efd; }
.btn-cancel { background-color: #6c757d; }
.btn-hapus  { background-color: #A60202; }
.btn-edit   { background-color: #0A626E; }
.btn-tambah { background-color: #C75006; }

/* Global Hover untuk semua tombol slim & circle */
.btn-slim:hover, .btn-mini-circle:hover {
    transform: translateY(-1px);
    color: #FF992B !important; /* Warna orange yang Bapak suka */
    filter: brightness(1.1); /* Mencerahkan warna dasar sedikit */
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}