.profile-box {
    display: none; /* Hidden by default */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 800px;
    background: white;
    border: 2px solid #00FFFF; /* Purple border */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    animation: fadeIn 0.5s;
}

.profile-content {
    text-align: justify; /* Text alignment justified */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.profile-box button {
    display: block; /* Makes the button take full width */
    margin: 10px auto; /* Centers the button horizontally */
    padding: 10px 15px;
    border: none;
    background: #8131EB; /* Purple background for the button */
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.profile-box button:hover {
    background: #00FFFF; /* Darker purple on hover */
}
