/**
 * Responsive - Evolution Manager Style
 */

/* Tablets */
@media (max-width: 768px) {
    .container {
        padding: 24px;
        margin: 10px;
    }

    h1 {
        font-size: 1.25rem;
    }

    .qrcode-wrapper img {
        max-width: 180px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dashboard-actions {
        grid-template-columns: 1fr;
    }

    .profile-section {
        flex-direction: column;
        text-align: center;
    }

    .device-status {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 480px) {
    body {
        padding: 12px;
    }

    .container {
        padding: 20px 16px;
        border-radius: 10px;
    }

    h1 {
        font-size: 1.1rem;
    }

    .api-status {
        top: 8px;
        left: 8px;
        padding: 6px 10px;
        font-size: 0.7rem;
    }

    .theme-toggle {
        top: 8px;
        right: 8px;
        width: 36px;
        height: 36px;
    }

    .input-wrapper input {
        padding: 10px;
        font-size: 0.8rem;
    }

    .input-btn {
        width: 32px;
        height: 32px;
    }

    #submitBtn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .qrcode-wrapper {
        padding: 12px;
    }

    .qrcode-wrapper img {
        max-width: 160px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 12px;
    }

    .modal-content {
        width: 95%;
        margin: 16px;
    }

    .profile-avatar {
        width: 48px;
        height: 48px;
    }

    .btn-dash {
        padding: 10px;
        font-size: 0.75rem;
    }

    .control-buttons {
        flex-direction: column;
    }

    .btn-control {
        width: 100%;
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .container {
        padding: 16px 12px;
    }

    .qrcode-wrapper img {
        max-width: 140px;
    }

    .device-status {
        flex-direction: column;
        gap: 4px;
    }
}