/* public/css/mobile-responsive.css */

/* Mobile-First Enhancements */
@media (max-width: 768px) {
    /* Header Navigation */
    header nav ul {
        flex-direction: column;
        align-items: center;
    }

    header nav ul li {
        margin: 10px 0;
    }

    .language-selector {
        position: static;
        margin-top: 10px;
    }

    /* Modal Content */
    .modal-content {
        width: 90%;
    }

    /* Chat Section */
    .chat-section {
        height: 75vh;
        padding: 15px;
    }

    .messages {
        max-height: 350px;
        padding: 10px;
    }

    .message {
        max-width: 85%;
    }

    #emoji-button {
        font-size: 1.3em;
    }

    .btn-send {
        padding: 10px 20px;
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    /* Further Adjustments for Very Small Screens */
    .chat-section {
        height: 70vh;
        padding: 10px;
    }

    .messages {
        max-height: 300px;
        padding: 8px;
    }

    .message {
        max-width: 95%;
    }

    #message-input {
        padding: 10px 12px;
        font-size: 0.9em;
    }

    #emoji-button {
        font-size: 1.2em;
    }

    .btn-send {
        padding: 8px 18px;
        font-size: 0.9em;
    }

    /* Dashboard Stats */
    .dashboard-stats .stat {
        width: 100%;
    }

    /* Forms */
    .form-group textarea {
        height: 35px;
    }

    /* Tables */
    table, th, td {
        font-size: 10px;
    }

    /* Support Users Display */
    .support-user {
        padding: 4px 8px;
        font-size: 0.7em;
    }
}
