/* /ui/css/style.css */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    /* 1. The Image */
    background-image: url('../img/park-bg.jpg');

    /* 2. Scale to fill the screen */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Keeps image still while scrolling */

    /* 3. Fallback color if image fails */
    background-color: #343a40;

    /* 4. Full height to prevent white bars */
    min-height: 100vh;
}

/* Optional: Make the login card slightly transparent so the background bleeds through */
.card {
    border: none;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3); /* Stronger shadow for contrast */
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.95); /* 95% Opaque White */
}

.card-header {
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
    font-weight: 600;
    letter-spacing: 1px;
}

input[name="code"] {
    letter-spacing: 5px;
    font-size: 1.5rem;
}
/* WhatsApp Style Tweaks */
.message-in {
    border-top-left-radius: 0 !important;
}
.message-out {
    border-top-right-radius: 0 !important;
}
/* Ensure legacy HTML images don't overflow the chat bubble */
.message-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}
/* Send Button Animation */
#replyForm button:hover {
    background-color: #1c8548; /* Darker green */
    transform: scale(1.05);    /* Grow slightly */
}
#replyForm button:active {
    transform: scale(0.95);    /* Shrink on click */
}
