/* Bulk Action Messages */
#bulk-action-message {
    margin: 20px 0;
    padding: 12px 16px;
    border-radius: 4px;
    border-left: 4px solid;
}

#bulk-action-message.notice-success {
    background-color: #d4edda;
    border-color: #28a745;
    color: #155724;
}

#bulk-action-message.notice-error {
    background-color: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}
/* Loading States */
.button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Hover effects for buttons */
.button:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Table improvements */
.easy-form-table {
    border-collapse: collapse;
    width: 100%;
}

.easy-form-table td {
    padding: 15px;
    vertical-align: top;
}

/* Form table improvements */
.form-table th {
    padding: 20px 10px 20px 0;
    width: 200px;
    line-height: 1.3;
}

.form-table td {
    padding: 15px 10px;
}

/* Description text styling */
.description {
    color: #666;
    font-style: italic;
    margin-top: 5px;
    display: block;
}