/* Actions Styles - Redefined for new theme */
.actions-cell {
    display: flex;
    gap: 10px;
    /* More spacing */
    justify-content: center;
    white-space: nowrap;
}

.btn-icon {
    width: 36px;
    /* Larger touch target */
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    /* Rounded squares */
    border: 1px solid transparent;
    background-color: #f3f4f6;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-icon:hover {
    transform: scale(1.1);
}

.btn-icon[title="Düzenle"]:hover {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.4);
}

.btn-delete:hover {
    background-color: var(--accent-color);
    /* Rose color for delete */
    color: white;
    box-shadow: 0 4px 6px -1px rgba(244, 63, 94, 0.4);
}

.btn-success {
    background-color: var(--success-color);
    color: white;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    transition: background-color 0.2s;
    font-size: 13px;
    padding: 8px 16px;
}

.btn-success:hover {
    background-color: #059669;
    color: white;
}

/* Quick Actions Bar */
.quick-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 4px;
    /* Scrollbar spacing */
}

.qa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid #e5e7eb;
    padding: 10px 16px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.qa-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    color: #2563eb;
    border-color: #2563eb;
}

.qa-btn i {
    font-size: 14px;
    color: #9ca3af;
}

.qa-btn:hover i {
    color: #2563eb;
}

.qa-btn.admin {
    background: #fffbeb;
    border-color: #fcd34d;
    color: #b45309;
}

.qa-btn.admin:hover {
    background: #fef3c7;
    color: #d97706;
}

.qa-btn.admin i {
    color: #f59e0b;
}