/* /basis/qr_superapp/assets/css/qr3-styles.css */
.qr3-container {
    display: flex;
    height: 100vh;
    padding: 10px;
    gap: 10px;
}

.qr3-sidebar {
    width: 400px;
	overflow: auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 20px;
/*    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.qr3-left {
    border-left: 5px solid #4CAF50;
}

.qr3-right {
}

.qr3-main {
    flex: 1;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    overflow-y: auto;
    transition: all 0.3s ease;
}

.qr3-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.qr3-btn-primary {
    background: linear-gradient(45deg, #4CAF50, #2E7D32);
    color: white;
}

.qr3-btn-primary:hover {
    background: linear-gradient(45deg, #388E3C, #1B5E20);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.qr3-btn-secondary {
    background: linear-gradient(45deg, #2196F3, #0D47A1);
    color: white;
}

.qr3-btn-secondary:hover {
    background: linear-gradient(45deg, #1976D2, #0D47A1);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
}

.qr3-qr-display {
    margin-top: 20px;
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px dashed #dee2e6;
}

.qr3-qr-image {
    max-width: 180px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.qr3-title {
    color: #333;
    margin-bottom: 20px;
    font-size: 28px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.qr3-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
/*    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); */

}

.qr3-card h3 {
    color: #444;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.qr3-loader {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: qr3-spin 1s linear infinite;
}

@keyframes qr3-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Адаптивность */
@media (max-width: 1024px) {
    .qr3-container {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }
    
    .qr3-sidebar {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .qr3-left, .qr3-right {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .qr3-btn {
        margin-bottom: 0;
        flex: 1;
        min-width: 120px;
    }
}