﻿.page-header-sm {
    font-size: 1.25rem !important;
    font-weight: 600;
}
.brand-logo-img {
    height: 100px;
    width: auto;
    max-height: 100%;
}
/* ===============================
   SWEETALERT CUSTOM CONFIRM
================================ */

.delete-confirm-popup {
    border-radius: 12px;
    padding: 20px;
}

.delete-confirm-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.delete-confirm-container {
    text-align: center;
    font-size: 14px;
}

.delete-confirm-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.delete-confirm-icon {
    font-size: 36px;
    color: #dc3545;
}

.delete-confirm-message {
    font-size: 15px;
    margin: 0;
}

.delete-confirm-warning {
    font-size: 13px;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 6px;
}

.delete-confirm-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

/* BUTTONS */
.delete-confirm-btn {
    min-width: 110px;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.delete-confirm-btn-danger {
    background-color: #dc3545;
    color: #fff;
}

    .delete-confirm-btn-danger:hover {
        background-color: #bb2d3b;
    }

.delete-confirm-btn-secondary {
    background-color: #e9ecef;
    color: #212529;
}

    .delete-confirm-btn-secondary:hover {
        background-color: #d3d9df;
    }


    /* wwwroot/css/site.css atau file CSS terpisah */
.app-alert-popup {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.app-alert-btn {
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
}

.app-alert-btn-error {
    background-color: #dc3545;
    color: white;
}

.app-alert-btn-error:hover {
    background-color: #c82333;
}