.cc-success-modal-overlay {
                                    position: fixed;
                                    top: 0;
                                    left: 0;
                                    width: 100%;
                                    height: 100%;
                                    background-color: rgba(0, 0, 0, 0.5);
                                    z-index: 9999;
                                    display: none;
                                    align-items: center;
                                    justify-content: center;
                                    opacity: 0;
                                    transition: opacity 0.3s ease;
                                }
                                .cc-success-modal-overlay.active {
                                    opacity: 1;
                                    display: flex;
                                }
                                .cc-success-modal-container {
                                    background-color: #fff;
                                    border-radius: 12px;
                                    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
                                    padding: 24px;
                                    width: 90%;
                                    max-width: 500px;
                                    text-align: center;
                                    transform: scale(0.9);
                                    transition: transform 0.3s ease;
                                }
                                .cc-success-modal-overlay.active .cc-success-modal-container {
                                    transform: scale(1);
                                }
                                .cc-success-modal-icon {
                                    margin: 0 auto 20px;
                                    width: 70px;
                                    height: 70px;
                                    border-radius: 50%;
                                    background-color: #4CAF50;
                                    display: flex;
                                    align-items: center;
                                    justify-content: center;
                                    color: white;
                                    font-size: 32px;
                                }
                                .cc-success-modal-title {
                                    margin-bottom: 12px;
                                    color: #333;
                                    font-size: 24px;
                                    font-weight: 600;
                                }
                                .cc-success-modal-message {
                                    margin-bottom: 24px;
                                    color: #666;
                                    line-height: 1.5;
                                    font-size: 16px;
                                }
                                .cc-success-modal-button {
                                    background-color: #23366A;
                                    color: white;
                                    border: none;
                                    padding: 12px 24px;
                                    border-radius: 6px;
                                    font-size: 16px;
                                    font-weight: 500;
                                    cursor: pointer;
                                    transition: background-color 0.2s;
                                }
                                .cc-success-modal-button:hover {
                                    background-color: #1a2a50;
                                }

.cc-error-modal-overlay {
                                    position: fixed;
                                    top: 0;
                                    left: 0;
                                    width: 100%;
                                    height: 100%;
                                    background-color: rgba(0, 0, 0, 0.5);
                                    z-index: 9999;
                                    display: none;
                                    align-items: center;
                                    justify-content: center;
                                    opacity: 0;
                                    transition: opacity 0.3s ease;
                                }
                                .cc-error-modal-overlay.active {
                                    opacity: 1;
                                    display: flex;
                                }
                                .cc-error-modal-container {
                                    background-color: #fff;
                                    border-radius: 12px;
                                    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
                                    padding: 24px;
                                    width: 90%;
                                    max-width: 500px;
                                    text-align: center;
                                    transform: scale(0.9);
                                    transition: transform 0.3s ease;
                                }
                                .cc-error-modal-overlay.active .cc-error-modal-container {
                                    transform: scale(1);
                                }
                                .cc-error-modal-icon {
                                    margin: 0 auto 20px;
                                    width: 70px;
                                    height: 70px;
                                    border-radius: 50%;
                                    background-color: #f44336;
                                    display: flex;
                                    align-items: center;
                                    justify-content: center;
                                    color: white;
                                    font-size: 32px;
                                }
                                .cc-error-modal-title {
                                    margin-bottom: 12px;
                                    color: #333;
                                    font-size: 24px;
                                    font-weight: 600;
                                }
                                .cc-error-modal-message {
                                    margin-bottom: 24px;
                                    color: #666;
                                    line-height: 1.5;
                                    font-size: 16px;
                                    white-space: pre-line;
                                }
                                .cc-error-modal-button {
                                    background-color: #23366A;
                                    color: white;
                                    border: none;
                                    padding: 12px 24px;
                                    border-radius: 6px;
                                    font-size: 16px;
                                    font-weight: 500;
                                    cursor: pointer;
                                    transition: background-color 0.2s;
                                }
                                .cc-error-modal-button:hover {
                                    background-color: #1a2a50;
                                }

* { box-sizing: border-box; }
*{box-sizing:border-box;}