/* VID Enrollment Instructions Styling */

/* Main container for VID enrollment instructions */
.vid-enrollment-container {
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

/* Instructional text styling */
.vid-enrollment-instructions {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: left;
}

/* Container for both platform download sections */
.vid-download-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Individual platform container (Android or iOS) */
.vid-platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* QR code container */
.vid-qrcode {
    width: 150px;
    height: 150px;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    background: white;
}

.vid-qrcode img {
    width: 100%;
    height: 100%;
    display: block;
}

/* App store badge container */
.vid-store-badge {
    height: 50px;
}

.vid-store-badge img {
    height: 100%;
    width: auto;
}

/* Platform label (Android/Apple) */
.vid-platform-label {
    font-weight: bold;
    color: #333;
    font-size: 16px;
}

/* Responsive design for mobile devices */
@media (max-width: 768px) {
    .vid-download-section {
        flex-direction: column;
        gap: 40px;
    }
    
    .vid-qrcode {
        width: 120px;
        height: 120px;
    }
}
