.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: #D7DEE6;
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    font-weight: bold;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.modal-content h3 {
    margin-top: 0;
    font-size: 24px;
    font-weight: bold;
}

 .modal-content p {
    margin-top: 0;
    font-size: 24px;
    font-weight: bold;
}

.modal-content button {
    margin-top: 20px;
    padding: 12px 30px;
    background-color: #D7DEE6;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}
.modal-content button:hover {
    background-color: #d7dee6;
}

#duplicateModal .btn {
    margin: 25px;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

#duplicateModal .btn-danger {
    background-color: #874FFF;
    color: white;
}

#duplicateModal .btn-secondary {
    background-color: #0f6bff;
    color: white;
}
