/* BrowserStack Clone - Tool-specific styles */

.device-frame {
    transition: all 0.3s ease;
}

.device-frame.portrait {
    /* Portrait mode - default */
}

.device-frame.landscape {
    /* Landscape mode */
}

.preview-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.preview-loading::after {
    content: "";
    width: 40px;
    height: 40px;
    border: 4px solid #f3f4f6;
    border-top-color: #6366f1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .device-frame {
        max-width: 100% !important;
        height: auto !important;
    }
}
