/* PRO Badge */
.pro-badge {
    background: #007bff;
    color: white;
    padding: 1px 8px;
    border-radius: 10px;
    font-size: 0.7em;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Upgrade Link */
.upgrade-link {
    color: #007bff;
    font-size: 0.7em;
    text-decoration: none;
    font-weight: 500;
}

.upgrade-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* User Info Container - вертикальное расположение */
.user-info {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-right: 5px;
}

/* Upgrade Page */
.upgrade-page {
    max-width: 500px;
    margin: 40px auto;
}

.pricing-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
}

.price {
    font-size: 2em;
    color: #007bff;
    font-weight: 600;
    margin: 15px 0;
}

.features ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.features li {
    padding: 5px 0;
    color: #495057;
}

.btn-pro {
    background: #007bff;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin: 20px 0;
}

.btn-pro:hover {
    background: #0056b3;
    text-decoration: none;
}

.test-note {
    color: #6c757d;
    font-size: 0.9em;
}

/* Success Page */
.success-page {
    max-width: 500px;
    margin: 40px auto;
}

.success-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
}