/* Apply styles to table cells */
#chat-table {
    border-collapse: collapse;
    width:100%; 
    background-color:#f0f0f1;    
    /* Ensures borders are merged between cells */
}

#chat-table>tr,
#chat-table>th {
    margin-left: 3em;
    border: 1px solid #ddd;
    /* Light gray border for rows */
    padding: 8px;
    /* Optional: adds padding inside rows */
    position: relative;
    /* Required for positioning the drop shadow */
}

#chat-table td {
    padding-left: 10px;
    padding-right: 10px;
}

/* Add drop shadow to rows */
#chat-table>tr::after,
#chat-table>th::after {
    content: "";
    /* Empty content for the shadow effect */
    position: absolute;
    /* Positioning for shadow effect */
    top: 0;
    /* Aligns shadow with the top edge */
    left: 0;
    /* Aligns shadow with the left edge */
    width: 100%;
    /* Full width of the cell */
    height: 100%;
    /* Full height of the cell */
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    /* 2px drop shadow */
    pointer-events: none;
    /* Ensure shadow does not affect interaction */
    z-index: -1;
    /* Places shadow behind content */
}

#chat-table .col1 {
    width: 15%;
}

#chat-table .col2 {
    width: 65%;
}

#chat-table .col3 {
    width: 20%;
}

#chat-display {
    background-color: #5950d7;
    border-radius: 5px;
    -moz-border-radius: 5px;
    border: 1px solid #ccc; 
    padding: 5px; 
    max-height: 70%; 
    overflow-y: auto;
}

.update-nag {
    display:none;
}