:root{
    --accent-color: #0a1259;
}
.container-chat {
    display: block;
    /* overflow-y: auto; */
    /* max-height: 250px; */
    background-color: transparent;
    width:90%;
    margin: auto;
    position: fixed;
    bottom: 0; /* Stick the container to the bottom */
    left: 0; /* Align container to the left */
    right: 0; /* Align container to the right */
}

.form {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem; /* Add padding to the form */
}

.input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem 0 0 0.25rem;
    box-shadow: 0 4px 6px rgba(126, 126, 126, 0.1);
}

.button {
    padding: 0.75rem 1rem;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 0 0.25rem 0.25rem 0;
    cursor: pointer;
}
/* urls containers */
.container-url {
    max-width: 800px; /* Set maximum width for the container */
    margin: 0 auto; /* Center the container */
}
.custom{
 background-color: var(--accent-color);
 color: #ffffff;
}
.custom:hover{
    background-color:#007bff ;
    color: #ffffff;
   }
.bg-gray-200 {
    overflow: auto; /* Add scrollbars if content overflows */
}


@media (max-width:600px) {
    .container-chat {
        width: 100%; /* Adjusted width for smaller screens */
        margin-left: 2px;
        margin-right: 2px;
    }
    
}