/* Mobile-friendly message viewer styles */
body {
    background-color: #f8f9fa;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.message-container {
    min-height: 100vh;
    padding: 1rem;
}

.message-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.message-header {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1rem;
}

.message-header h5 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.response-section {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.btn-response {
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .message-container {
        padding: 0.5rem;
    }
    
    .message-card {
        margin-bottom: 1rem;
    }
    
    .btn-response {
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .message-header h5 {
        font-size: 1.1rem;
    }
}