/* استایل‌های پنل کاربری */
.xui-user-panel {
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.xui-vpn-accounts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 20px;
    margin-bottom: 30px;
}

.xui-vpn-account-card {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.xui-vpn-account-card:hover {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.xui-vpn-account-header {
    background: #f9f9f9;
    padding: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.xui-vpn-account-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.xui-vpn-status {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}

.xui-vpn-status.active {
    background-color: #7ad03a;
    color: #fff;
}

.xui-vpn-status.trial {
    background-color: #ffba00;
    color: #fff;
}

.xui-vpn-status.pending {
    background-color: #e5e5e5;
    color: #777;
}

.xui-vpn-status.pause {
    background-color: #f0ad4e;
    color: #fff;
}

.xui-vpn-status.cancelled {
    background-color: #a00;
    color: #fff;
}

.xui-vpn-status.expired {
    background-color: #888;
    color: #fff;
}

.xui-vpn-account-info {
    padding: 15px;
}

.xui-vpn-info-row {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.xui-vpn-info-label {
    font-weight: bold;
    margin-right: 10px;
    min-width: 120px;
}

.xui-vpn-info-active {
    color: #7ad03a;
    font-weight: bold;
}

.xui-vpn-info-deleted {
    color: #a00;
    font-weight: bold;
}

.xui-vpn-info-paused {
    color: #f0ad4e;
    font-weight: bold;
}

.xui-vpn-info-cancelled {
    color: #a00;
    font-weight: bold;
}

.xui-vpn-info-pending {
    color: #777;
    font-weight: bold;
}

.xui-vpn-progress {
    width: 100%;
    height: 5px;
    background-color: #eee;
    border-radius: 3px;
    margin-top: 5px;
    overflow: hidden;
}

.xui-vpn-progress-bar {
    height: 100%;
    background-color: #7ad03a;
    border-radius: 3px;
}

.xui-vpn-note {
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 3px;
    font-size: 13px;
    color: #666;
    margin-top: 15px;
}

.xui-vpn-config-section {
    margin-top: 15px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.xui-vpn-config-toggle {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 3px;
    cursor: pointer;
    width: 100%;
    text-align: center;
    transition: background-color 0.2s ease;
}

.xui-vpn-config-toggle:hover {
    background-color: #f0f0f0;
}

.xui-vpn-config-content {
    margin-top: 15px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 3px;
}

.xui-vpn-qrcode {
    text-align: center;
    margin: 15px 0;
}

.xui-vpn-qrcode img {
    max-width: 200px;
    height: auto;
}

.xui-vpn-config-link {
    margin-top: 15px;
}

.xui-vpn-config-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 12px;
    color: #555;
}

.xui-vpn-copy-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
    transition: background-color 0.2s ease;
}

.xui-vpn-copy-button:hover {
    background-color: #45a049;
}

.xui-vpn-help {
    margin-top: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.xui-vpn-help h3 {
    margin-top: 0;
    font-size: 18px;
    margin-bottom: 15px;
}

.xui-vpn-apps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 20px;
    margin: 20px 0;
}

.xui-vpn-app h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 16px;
}

.xui-vpn-app ul {
    margin: 0;
    padding-left: 20px;
}

.xui-vpn-app li {
    margin-bottom: 5px;
}

.xui-user-panel-error {
    padding: 15px;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* استایل‌های پاسخگو */
@media (max-width: 768px) {
    .xui-vpn-accounts {
        grid-template-columns: 1fr;
    }
    
    .xui-vpn-apps {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .xui-vpn-apps {
        grid-template-columns: 1fr;
    }
    
    .xui-vpn-info-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .xui-vpn-info-label {
        margin-bottom: 5px;
    }
}