.vpn-services-wrapper {
    max-width: 800px;
    margin: 20px auto;
}

.vpn-service-item {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.vpn-service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.vpn-service-name {
    margin: 0;
    font-size: 1.2em;
    color: #333;
}

.vpn-service-status {
    background: #0073aa;
    color: #fff;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
}

.vpn-service-details {
    margin-bottom: 10px;
}

.vpn-subscription-url {
    word-break: break-all;
    background: #f0f0f0;
    padding: 10px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9em;
}

.vpn-service-actions {
    display: flex;
    gap: 10px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.vpn-service-actions .button {
    background: #007cba;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease;
}

.vpn-service-actions .button:hover {
    background: #005a87;
    color: #fff;
}

.vpn-service-meta {
    font-size: 0.85em;
    color: #666;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e0e0e0;
}

/* Copy button feedback */
.vpn-copy-button.copied {
    background: #46b450;
}

.vpn-copy-button.copied::after {
    content: ' ✓';
}

/* Responsive */
@media (max-width: 768px) {
    .vpn-service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .vpn-service-actions {
        flex-direction: column;
    }

    .vpn-service-actions .button {
        width: 100%;
        text-align: center;
    }
}