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

.hidden {
    display: none;
}

.apply-modal-content {
    background: #111;
    padding: 40px 40px 50px;
    border-radius: 18px;
    width: 90%;
    max-width: 520px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.modal-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 14px;
}

.modal-desc {
    text-align: center;
    font-size: 15px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 40px;
}

.modal-row {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    align-items: center;
}

.label {
    color: #bbbbbb;
    width: 180px;
    flex-shrink: 0;
}

.value {
    font-weight: 600;
}

.link {
    color: #f7d57c;
}

.password-row .value {
    color: #f7d57c;
}

.copy-btn {
    margin-left: auto;
    background: #333;
    color: #f7d57c;
    border: none;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.copy-btn:hover {
    background: #444;
}

.modal-footer {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.modal-close {
    padding: 12px 22px;
    background: #333;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}

.modal-primary-btn {
    padding: 12px 22px;
    background: #f7d57c;
    border-radius: 10px;
    font-size: 15px;
    color: #000;
    font-weight: 600;
    text-decoration: none;
}
