.btn-primary-custom {
    background: linear-gradient(135deg, #FFAA00 0%, #237227 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(12, 23, 64, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(12, 23, 64, 0.4);
    background: linear-gradient(135deg, #237227 0%, #237227 100%);
    color: white;
}

.btn-primary-custom i {
    transition: transform 0.3s ease;
}

.btn-primary-custom:hover i {
    transform: rotate(90deg);
}

.search-box-container {
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    width: 320px;
}

.search-button {
    background: linear-gradient(135deg, #FFAA00 0%, #237227 100%);
    border: none;
    width: 45px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.search-input {
    border: none;
    outline: none;
    padding: 10px 15px;
    font-size: 16px;
    flex: 1;
    height: 44px;
}

.search-input:focus {
    box-shadow: none;
}

.table-container {
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 20px;
    background-color: white;
}

.table-header-sticky {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 10;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.entries-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
}

.entries-select {
    padding: 8px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s;
}

.entries-select:focus {
    border-color: #FFD786;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.table-custom thead {
    background: linear-gradient(to right, #eff6ff, #dbeafe);
}

.table-custom thead th {
    font-weight: 600;
    color: #334155;
    padding: 12px;
}

.table-custom tbody tr {
    transition: background-color 0.15s;
}

.table-custom tbody tr:hover {
    background-color: #237227;
}

.table-custom tbody td {
    padding: 12px;
    color: #4b5563;
}

.action-btn-custom {
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.action-btn-custom:hover {
    transform: scale(1.1);
}

.action-btn-delete:hover {
    background-color: #fee2e2;
}

.action-btn-edit:hover {
    background-color: #d1fae5;
}

.modal-custom .modal-content {
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: none;
}

.modal-custom .modal-header {
    border-bottom: 2px solid #f3f4f6;
    padding: 20px 24px;
}

.modal-custom .modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #237227;
}

.modal-custom .modal-body {
    padding: 24px;
}

.modal-custom .modal-footer {
    border-top: none;
    padding: 16px 24px;
}

.form-group-custom label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.form-control-custom {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.2s;
}

.form-control-custom:focus {
    border-color: #FFD786;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

.btn-secondary-custom {
    padding: 10px 24px;
    background-color: #f3f4f6;
    color: #374151;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    transition: all 0.2s;
}

.btn-secondary-custom:hover {
    background-color: #237227;
    transform: scale(1.05);
}

.btn-danger-custom {
    padding: 10px 24px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    transition: all 0.3s;
}

.btn-danger-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
}
