.cursor-pointer {
    cursor: pointer;
}

.fs-7 {
    font-size: 0.75rem;
}





   /* #backdrop {
        display: none;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 9998;
        backdrop-filter: blur(3px);
    }

    #status-msg {
        display: none;
        position: fixed;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
        z-index: 9999;
        min-width: 320px;
        max-width: 90%;
        padding: 30px;
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        font-family: sans-serif;
    }

    .alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
    .alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
    
    .btn-back-modal { 
        display: block; 
        margin: 50px auto 0; 
        padding: 10px 25px; 
        background: #007bff; 
        color: white; 
        border: none; 
        border-radius: 5px; 
        cursor: pointer; 
        font-weight: bold;
        font-size: 0.75rem;
    }
    */



    

/* Przyciemnienie tła (Backdrop) */

/*.custom-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.87); /* Ciemny backdrop */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Musi być nad wszystkim */
}

#status-message {
    width: 90%;
    max-width: 450px;
    border-radius: 15px;
    border: none;
    animation: zoomIn 0.3s ease-out;
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

#status-message.alert-success {
    background-color: #d1e7dd;
    color: #0f5132;
}

#status-message.alert-danger {
    background-color: #f8d7da;
    color: #842029;
}

@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
*/