    /* Table of Contents
================================
1. General Styles
2. Modal Styles
3. Button Styles
4. Animation Keyframes
================================ */

/* 1. General Styles */

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* 2. Modal Styles */

.bzn-filepond-deactivation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bzn-filepond-deactivation-modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    text-align: center;
}

.bzn-filepond-deactivation-modal-content h2 {
    margin-top: 0;
}

.bzn-filepond-deactivation-modal-content p {
    margin-bottom: 20px;
}

/* 3. Button Styles */

.bzn-filepond-button {
    color: #444444;
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bzn-filepond-authorize-button {
    background-color: #e5f5ff;
    background-image: linear-gradient(to bottom, #e5f5ff, #f5faff);
}

.bzn-filepond-cancel-button {
    background-color: #ffe5e5;
    background-image: linear-gradient(to bottom, #ffe5e5, #ffd6d6);
}

.bzn-filepond-button:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.bzn-filepond-authorize-button:hover {
    background-color: #d6eaff;
}

.bzn-filepond-cancel-button:hover {
    background-color: #ffd6d6;
}

/* 4. Animation Keyframes */

@keyframes bzn-filepond-slide-in {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
