#successMessage {
            display: none;
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color:#333333;
            color:rgba(255,255,255,.75);
            padding: 15px;
            border-radius: 5px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }

.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #262626;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 500px;
    max-height: 320px;
    text-align: center;
    animation: fadeIn 0.3s ease-out;
    overflow-y: auto;
}
.modalcompany {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #262626;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 400px;
    max-height: 200px;
    text-align: center;
    animation: fadeIn 0.3s ease-out;
    overflow-y: auto;
}

/* Modal Icon */
.modal-icon {
    margin-bottom: 15px;
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #ff4d67;
    color: white;
    font-size: 32px;
    line-height: 70px;
    text-align: center;
    margin: 0 auto;
}

/* Header and Text */
.modal h2 {
    font-size: 22px;
    color: rgba(255,255,255,.75);
    margin-bottom: 10px;
}

.modal p {
    font-size: 14px;
    color: #fff;
    margin-bottom: 20px;
}

/* Buttons */
.modal-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary {
    background-color: #d6d6d6;
    color: #333;
}

.btn-secondary:hover {
    background-color: #bfbfbf;
}

.btn-danger {
    background-color: #ff4d67;
    color: white;
}

.btn-danger:hover {
    background-color: #e60026;
}
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    z-index: 999;
}
/* Fade-in Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -45%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}
