@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif; /* Apply Open Sans */
    font-size: 0.8rem;
}

html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}
ul.page {
    margin-left: 20px;
}
/* Main Wrapper to Push Footer */
.wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Container */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex-grow: 1; /* Allows content to stretch */
}

/* Navigation Bar */
nav {
    background: #0061AE;
    padding: 5px 0;
    text-align: center;
    width: 100%;
}

nav .title {
    position: absolute;
    top: 10px;
    left: 10px;
    color: white;
    margin-left: 10px;
    text-align: left;
    line-height: 1.5rem;
}
nav .title i {
    font-size: 2rem;
}
nav .title span {
    position: relative;
    top: -3px; /* Move text slightly up */
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
}

.nav-logo {
    color: white;
}
.nav-logo img {
    height: 50px; /* Adjust size */
    width: auto;
}
@media (max-width: 576px) {
    .nav-logo img {
        height: 35px; /* Smaller logo for mobile */
        max-width: 100%; /* Ensure it doesn't overflow */
    }
}
nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    transition: background 0.3s ease-in-out, color 0.3s;
    border-radius: 5px;
}

nav ul li a:hover {
    background: white;
    color: #0061AE;
}
.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar ul li {
    position: relative;
}

.sidebar ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
    color: #fff;
}


.sidebar ul li.has-dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sidebar ul li.has-dropdown > a .menu-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

.sidebar ul .submenu {
    display: none;
    list-style: none;
}

.sidebar ul .submenu li a {
    padding: 10px 15px;
    display: block;
    font-size: 0.8rem;
}

.sidebar ul li.has-dropdown.open .submenu {
    display: block;
}

.dropdown-icon {
    transition: transform 0.3s ease;
}
.has-dropdown.open .dropdown-icon {
    transform: rotate(180deg);
}
.sidebar ul li.has-dropdown > a .dropdown-icon {
    margin-left: auto;
}
/* Header Styling */
h1 {
    text-align: left;
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    color: #0061AE;
    border-bottom: 1px solid lightgray;
}

h2 {
    text-align: left;
    margin: 10px 0 10px 0;
    font-size: 1rem;
    color: #0061AE;
}

/* Container for Forms */
.cbam-forms-container {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping to next row if needed */
    justify-content: flex-start; /* Aligns items from left to right */
    gap: 20px; /* Spacing between forms */
}

/* Form Styling */
form.small {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    min-width: 300px; /* Ensures forms don’t shrink too much */
    flex: 1 1 calc(25% - 20px); /* Distributes forms evenly in a row */
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    min-height: 320px; /* Ensure all forms have the same height */
}
form.medium {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    min-width: 700px; /* Ensures forms don’t shrink too much */
    flex: 1 1 calc(25% - 20px); /* Distributes forms evenly in a row */
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    min-height: 320px; /* Ensure all forms have the same height */
}
form.small button, form.medium button {
    align-self: center;
    width: 100%;
}
form.small button:disabled, form.medium button:disabled {
    background-color: lightgray;
}
form.center {
    margin: auto;
}
form.small ul, form.medium ul {
    margin-left: 20px;
}
/* Align Forms Left */
form.left {
    margin: 0;
}
i.large {
    font-size: 1rem;
}
/* General Form Layout */
form {
    background: #fff;
    padding-bottom: 10px;
    margin: 10px;
}

form label {
    display: flex;
    flex-direction: column;
    font-weight: bold;
}
form label i {
    font-size: 1rem;
    vertical-align: middle;
}
form label i:hover {
    color: grey;
    cursor: pointer;
}

form .selection-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    padding: 5px 20px;
    justify-content: center;
}
.info-display {
    display: flex;
    flex-wrap: wrap; /* Prevents breaking on small screens */
    align-items: center; /* Aligns inputs, labels, and selects properly */
    justify-content: space-between; /* Distributes content evenly */
    gap: 10px; /* Spacing between form elements */
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}
label span {
    display: block;
    margin: 5px 0;
    font-weight: bold;
}

form input, input {
    width: 100%;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.8rem;
}

select {
    width: 100%;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.8rem;
}
.button, button {
    display: inline-block;
    background: #0061AE;
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 3px;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    width: 100%;
}

/* Ensure the background color actually changes */
.button:hover, button:hover {
    background: #004b88;
    transform: scale(1.05); /* Slightly enlarges the button */
}

.button.secondary {
    background: #ccc;
    color: #333;
}

.button.secondary:hover {
    background: #bbb;
}

/* Sticky Footer */
footer {
    text-align: center;
    padding: 10px;
    background: #0061AE;
    color: white;
    width: 100%;
    margin-top: auto; /* Pushes footer to bottom */
    font-size: 0.9rem;
}

/* Error Messages */
.error {
    color: red;
    font-size: 0.8rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }

    form {
        width: 90%;
    }
    #chat-widget {
        bottom: 20px;
        right: 5px;
    }
}
.success {
    color: green;
    font-size: 0.8rem;
    text-align: center;
}

.error {
    color: red;
    font-size: 0.8rem;
    text-align: center;
}
a {
    color: #0061AE;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
/* General Layout */
.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f4f4;
    padding: 20px;
}
/* Reset Box-Sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Dashboard Layout */
.dashboard-container {
    display: flex;
    height: 100vh; /* Full height of viewport */
    width: 100vw; /* Full width of viewport */
    overflow: hidden;
}
.dashboard-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    padding: 20px;
    justify-content: center;
}

.dashboard-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.dashboard-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.dashboard-card i {
    font-size: 4rem;
    color: #0061AE;
    display: block;
    margin-bottom: 10px;
}

.dashboard-card h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.dashboard-card p {
    font-size: 1rem;
    color: #666;
}
@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        top: -100vh; /* Start hidden above the screen */
        left: 0;
        width: 100%;
        height: auto; /* Auto height so it doesn't push content */
        background: #0061AE;
        transition: top 0.3s ease-in-out;
        z-index: 1000;
        padding: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Adds slight shadow */
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .sidebar.active {
        top: 0; /* Slides down when active */
    }
    nav {
        height: 80px;
    }
    nav .title i {
        font-size: 2rem;
    }
    nav .title span:nth-of-type(2) {
        position: relative;
        top: 5px;
        font-family: 'Bebas Neue', sans-serif;
        font-size: 1rem;
        line-height: 1rem;
    }
    .dashboard-content {
        position: absolute; /* Ensures it stays at the top */
        top: 80px; /* Aligns it with the top of the page */
        left: 0;
        width: 100%;
        height: auto;
        min-height: 100vh; /* Ensures it takes full height */
        padding: 20px;
        background: #f4f4f4;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start; /* Content stays at the top */
        overflow-y: auto; /* Enables scrolling when content overflows */
        z-index: 500; /* Ensures it doesn't overlap the sidebar */
    }
    .sidebar ul {
        margin: 0;
        text-align: left; /* Ensures text aligns left */
        width: 100%; /* Makes sure it takes full width */
    }
    .hide-mobile {
        display: none;
    }

    #chat-widget {
        bottom: 20px;
        right: 5px;
    }
}

/* Sidebar Toggle Button */
.sidebar-toggle {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1100; /* Ensure it stays above content */
    touch-action: manipulation;
    -webkit-user-select: none; /* Prevents accidental text selection */
    pointer-events: auto; /* Ensures clicks are registered */
    padding: 5px;
    margin: 0;
}

@media (min-width: 769px) {
    .sidebar-toggle {
        display: none; /* Hide on larger screens */
    }

    #chat-widget {
        bottom: 20px;
        right: 5px;
    }
}
/* Sidebar */
.sidebar {
    width: 170px;
    background: #0061AE;
    color: white;
    padding: 10px;
    height: 100vh; /* Full height */
    display: flex;
    flex-direction: column;
    justify-content: start;
    text-align: left;
}

/* Sidebar Header */
.sidebar h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    flex-grow: 1;
}

.sidebar ul li {
    margin: 10px 0;
}

.sidebar ul li a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 5px 5px;
    border-radius: 2px;
    transition: background 0.3s;
    font-size: 1rem;
}
.sidebar ul li a i {
    font-size: 1rem;
    margin-right: 8px;
}

.sidebar ul li.has-dropdown a i {
    font-size: 1rem;
    margin-right: 0;
}
.sidebar ul li a:hover {
    background: #FFFFFF;
    color: #0061AE;
}

/* Dashboard Content */
.dashboard-content {
    flex-grow: 1;
    min-width: calc(100vw - 170px); /* Takes remaining width */
    max-width: calc(100vw - 170px); /* Takes remaining width */
    height: 100vh; /* Full viewport height */
    padding: 20px;
    background: #f4f4f4;
    display: flex;
    flex-direction: column; /* Ensures content starts at the top */
    align-items: center;
    justify-content: flex-start; /* Aligns content to the top */
    overflow-y: auto; /* Enables scrolling when content overflows */
}
.no-sidebar {
    max-width: 100vw;
}

/* Content Container */
.content-container {
    width: 100%;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    min-height: fit-content; /* Ensures it expands with content */
    height: auto; /* Allows content to determine height */
    overflow: visible; /* Prevents clipping */
    padding-bottom: 150px;
}
.no-background {
    background: none;
    border-radius: 0;
    box-shadow: none;
}

/* Table */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
/* Zebra striping */
tr:nth-of-type(odd) {
    background-color: #eeeeee;
    height: 25px;
}
tr:nth-of-type(even) {
    background-color: #FFFFFF;
    height: 25px;
}
tr:hover {
    background-color: #E0EEFA;
    height: 25px;
}

th {
    background-color: #0061AE;
    color: white;
    font-weight: bold;
    border: 1px solid #D6D6D6;
    text-align: left;
    overflow-x: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    height: 25px;
    padding-left: 2px;
}
td {
    border: 1px solid #D6D6D6;
    text-align: left;
    overflow-x: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
    padding: 0 0 0 5px;
}
td:hover {
    overflow: visible;
}
td i {
    font-size: 1.5rem;
    padding: 3px;
}
td i:hover {
    color: grey;
    cursor: pointer;
    transform: scale(0.9);
}
/* Responsive Design */
@media (max-width: 768px) {
    .sidebar {
        width: 200px;
    }
    #chat-widget {
        bottom: 20px;
        right: 5px;
    }
}

@media (max-width: 576px) {
    .dashboard-container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 10px;
    }

    .dashboard-content {
        min-width: 100%;
        height: auto;
        padding: 15px;
    }
    #chat-widget {
        bottom: 20px;
        right: 5px;
    }


}
/* Full-page overlay */
#cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Slight opacity */
    z-index: 9998;
    display: none; /* Hidden by default */
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    color: #333;
    padding: 15px;
    text-align: center;
    font-size: 1rem;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none; /* Hidden by default */
}

#cookie-banner a {
    color: #0061AE;
    font-weight: bold;
}

#cookie-banner button {
    background: #0061AE;
    color: white;
    border: none;
    padding: 8px 16px;
    margin-left: 10px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
}

#cookie-banner button:hover {
    background: #004b88;
}
.invite-btn {
    background: #0061AE;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 15px;
}

.invite-btn:hover {
    background: #004b88;
}

#invite-form {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

#invite-form h3 {
    margin-bottom: 10px;
}

#invite-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#invite-form button {
    background: #0061AE;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#invite-form button:hover {
    background: #004b88;
}

#cancel-invite {
    background: #ccc;
    color: black;
}

#cancel-invite:hover {
    background: #bbb;
}
.profile-picture-container {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
}

.profile-picture-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #ddd;
}

.profile-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    cursor: pointer;
}

.profile-picture-container:hover .profile-hover {
    opacity: 1;
}
.profile-hover i {
    font-size: 4rem; /* ✅ Increase the size of the pencil icon */
}
/* CBAM page */
/* Base row styles */
#cbam-table tbody tr {
    transition: background-color 0.2s ease-in-out;
}
.filter-container {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}

.filter-container label {
    font-weight: bold;
}

.filter-container select,
.filter-container input {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Highlight rows based on status */
.green {
    background-color: #C6EFCE !important; /* Light green */
}

.red {
    background-color: #FFC7CE !important; /* Light red */
}
/* Apply hover effect */
#cbam-table tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.15) !important; /* Light overlay */
}

/* Custom tooltip styling */
.tooltip {
    position: relative;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px; /* Ensures truncation inside table */
}


.tooltip .tooltip-text {
    visibility: hidden;
    position: fixed; /* Ensures it stays in place on the page */
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    white-space: normal;
    width: 60vw; /* 60% of the viewport width */
    max-width: 60vw; /* Ensures it stays within 60% of the page */
    left: 50%;
    transform: translateX(-50%);
    top: 20%; /* Adjusted to avoid overlapping with row */
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.tooltip .tooltip-text h2 {
    color: white;
}
.tooltip .tooltip-text p {
    margin-bottom: 3px;
}
.tooltip .tooltip-text ul {
    font-weight: normal;
    margin-left: 20px;
}
.tooltip .tooltip-text ul li {
    margin-bottom: 3px;
}
/* Show tooltip on hover */
.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}
/* Calculator page */
div.calculator-total, div.calculator-total * {
    width: 100%;
    font-size: 2rem;
    text-align: center;
    margin-top: auto;
}
#transport-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

#transport-table th, #transport-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

#transport-table th {
    background: #0061AE;
    color: white;
}

.transport-distance, .transport-factor {
    width: 80px;
    text-align: center;
}

.transport-mode {
    width: 150px;
}
.quick-start-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.quick-start-modal.hidden {
    display: none;
}
.quick-start-content {
    background: #fff;
    padding: 30px;
    max-width: 800px;
    width: 90%;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.quick-start-content h1 {
    border: none;
}
.quick-start-content h2 {
    margin: 5px 0 5px 0;
}
.quick-start-content i {
    font-size: 3rem;
    vertical-align: middle;
    margin-right: 10px;
}
.quick-start-content button {
    background: #0061AE;
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    margin-top: 20px;
    cursor: pointer;
}
.quick-start-link {
    float: right;
    margin: 10px;
    font-size: 0.9rem;
    text-decoration: none;
}
.quick-start-link i {
    margin-right: 5px;
}
.faq-tools {
    margin-bottom: 20px;
}
.faq-tools input {
    padding: 8px;
    margin-right: 10px;
    width: 300px;
}
.chatgpt-wrapper {
    display: flex;
    align-items: center; /* Vertically center content */
    gap: 10px;
    background-color: #f3f3f3;
    padding: 12px;
    margin-top: 10px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.chatgpt-wrapper i {
    font-size: 24px;
    color: #0061AE;
    flex-shrink: 0;
}

#chatgptResponse {
    flex: 1;
    line-height: 1.5;
    display: flex;
    align-items: center; /* Vertically align the text */
}

/* chat widget */
#chat-toggle-tab {
    position: fixed;
    bottom: 40px;
    right: 5px;
    background-color: #0061AE;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    z-index: 9998;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
#chat-toggle-tab i {
    font-size: 2rem;
    vertical-align: middle;

}

#chat-widget {
    position: fixed;
    bottom: 40px;
    right: 5px;
    width: 300px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    overflow: hidden;
    transform: translateY(120%);
    transition: transform 0.3s ease-in-out;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

#chat-widget.open {
    transform: translateY(0);
}

.chat-header {
    background-color: #0061AE;
    color: white;
    padding: 10px;
    font-weight: bold;
    position: relative;
}
.chat-header i {
    font-size: 2rem;
    vertical-align: middle;
}

.chat-close {
    position: absolute;
    right: 10px;
    top: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: normal;
    color: white;
}
.chat-close i {
    font-size: 2rem;
}

.chat-body {
    padding: 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    height: 600px;
}

#chat-messages {
    flex-grow: 1;
    overflow-y: auto;
    font-size: 14px;
    margin-bottom: 10px;
    background-color: #FDFFFF;
    padding: 3px;
}
.message {
    border-bottom: 1px solid grey;
    margin-bottom: 10px;
}
.message .timestamp {
    font-size: 0.7rem;
    color: grey;
}
#chat-input, #admin-chat-message {
    height: 60px;
    resize: none;
    padding: 5px;
    font-size: 0.8rem;
}

.chat-body button {
    margin-top: 5px;
    background-color: #0061AE;
    color: white;
    border: none;
    padding: 6px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
}



