#referal-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #1a1a1a;
    border-radius: 15px;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    z-index: 1001;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
}

#referal-modal h2 {
    margin-top: 0;
    color: #4CAF50;
}

.referal-link-container {
    margin: 20px 0;
    padding: 10px;
    background-color: #2a2a2a;
    border-radius: 8px;
    word-break: break-all;
}

#referal-link {
    font-size: 14px;
    color: #4CAF50;
}

.referal-buttons {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.referal-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.referal-button:hover {
    background-color: #45a049;
}