﻿.admin-actions .btn-action {
    min-width: 180px;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* Червона кнопка */
.btn-danger-custom {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
}

    .btn-danger-custom:hover {
        background: linear-gradient(135deg, #f44336, #d32f2f);
        box-shadow: 0 4px 12px rgba(211, 47, 47, 0.4);
    }

/* Синя кнопка */
.btn-primary-custom {
    background: linear-gradient(135deg, #004080, #0059b3);
}

    .btn-primary-custom:hover {
        background: linear-gradient(135deg, #0059b3, #0073e6);
        box-shadow: 0 4px 12px rgba(0, 89, 179, 0.4);
    }

/* Бірюзова кнопка */
.btn-info-custom {
    background: linear-gradient(135deg, #008c9e, #00acc1);
}

    .btn-info-custom:hover {
        background: linear-gradient(135deg, #00acc1, #26c6da);
        box-shadow: 0 4px 12px rgba(0, 172, 193, 0.4);
    }

/* Адаптивність */
@media (max-width: 768px) {
    .admin-actions .btn-action {
        flex: 1 1 100%;
    }
}
