.action-btn {
    background: linear-gradient(135deg, #00d4ff, #0099ff);
    border: none;
    color: var(--text-primary);
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-btn, .btn {
    padding: 12px 24px;
    border-radius: 12px;
    color: var(--text-primary);
    transition: all 0.3s ease;
    cursor: pointer;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.action-btn.secondary {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.btn {
    font-weight: 600;
    gap: 0.5rem;
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff 0%, #0091ff 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    background: var(--hover-bg);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

/*.btn-secondary {*/
/*    background: rgba(124, 77, 255, 0.2);*/
/*    color: #7c4dff;*/
/*    border: 1px solid rgba(124, 77, 255, 0.3);*/
/*}*/

.btn-secondary:hover {
    background: var(--border);
}

/*.btn-secondary:hover {*/
/*    background: rgba(124, 77, 255, 0.3);*/
/*}*/


.btn-success {
    background: linear-gradient(135deg, #4caf50, #8bc34a);
    color: white;
}

.btn-success {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.btn-danger {
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    color: white;
}

.btn-danger {
    background: rgba(244, 67, 54, 0.2);
    color: #ff4757;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-success:hover {
    background: rgba(76, 175, 80, 0.3);
}

.btn-danger:hover {
    background: rgba(244, 67, 54, 0.3);
}

.btn-warning {
    background: rgba(255, 152, 0, 0.2);
    color: #ff9800;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.btn-warning:hover {
    background: rgba(255, 152, 0, 0.3);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.icon-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.icon-btn-view {
    background: rgba(33, 150, 243, 0.2);
    color: #2196f3;
}

.icon-btn-edit {
    background: rgba(255, 152, 0, 0.2);
    color: #ff9800;
}

.icon-btn-delete {
    background: rgba(244, 67, 54, 0.2);
    color: #ff4757;
}

.icon-btn:hover {
    transform: scale(1.1);
}

.icon-btn-info {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
}

.icon-btn-info:hover {
    background: rgba(0, 212, 255, 0.3);
}

.icon-btn-edit:hover {
    background: rgba(255, 152, 0, 0.3);
}

.icon-btn-delete:hover {
    background: rgba(244, 67, 54, 0.3);
}


.icon-btn {
    width: 45px;
    height: 45px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
    position: relative;
}

.icon-btn:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.icon-btn button  {
    background: unset;
    border: unset;
}

.icon-btn span {
    color: var(--icon-bg);
    /*font-size: 10px;*/
}

.icon-btn button span, .icon-btn a span {
    font-size: unset;
}

.action-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #ff9800, #ff6b00);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
}

.action-btn.secondary {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid rgba(255, 152, 0, 0.3);
}


