/* Extracted styles from arduino.html */
/* Custom styles to mimic the React app's look and feel */
body {
    background-color: #f3f4f6; /* bg-gray-100 */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    font-family: 'Inter', sans-serif; /* Using a common sans-serif or specifying Inter if available */
}
.container {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.5rem; /* rounded-lg */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-xl */
    border: 1px solid #e5e7eb; /* border border-gray-200 */
    max-width: 500px; /* max-w-md */
    width: 100%;
}
.messages-display {
    background-color: #f9fafb; /* bg-gray-50 */
    border: 1px solid #e5e7eb; /* border border-gray-200 */
    border-radius: 0.5rem; /* rounded-lg */
    padding: 1rem;
    height: 16rem; /* h-64 */
    overflow-y: auto;
    margin-bottom: 1.5rem; /* mb-6 */
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); /* shadow-inner */
}
.message-you {
    text-align: right;
    color: #1e40af; /* text-blue-700 */
}
.message-arduino {
    text-align: left;
    color: #1f2937; /* text-gray-800 */
}
.status-connected {
    color: #16a34a; /* text-green-600 */
}
.status-disconnected {
    color: #dc2626; /* text-red-600 */
}
.text-gray-400 {
    color: #9ca3af;
}
.text-center {
    text-align: center;
}
.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
