.notes-container {
    position: relative;
    max-width: 870px;
    //background-color: #e9e9e9; /* Slightly different background for notes container if needed */
}

.addNoteButton {
        position: absolute;
        bottom: 5px;
        text-align: center;
        padding: 10px; /* Adjust padding as needed */
}

.transcont {
    position: relative;
    height: 20px;
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.transclass {
    display: inline-block;
    //position: relative;
    height: 15px;
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rotate90 {
    transform:matrix(0.00,1.00,-1.00,0.00,0,0);
        -ms-transform:matrix(0.00,1.00,-1.00,0.00,0,0);
        -webkit-transform:matrix(0.00,1.00,-1.00,0.00,0,0);
}

.notes-table {
    width: 100%;
    border-collapse: collapse;
    height: 150px;
    overflow-y: scroll;
}
  
.notes-table tr.pinned {
    font-weight: bold;
}

.notes-table tr.read {
    background-color: transparent !important;
}

.notes-table tr.read.pinned {
    background-color: transparent !important;
    font-weight: bold !important;
}

.notes-table th,
.notes-table td {
    text-align: left;
    padding: 8px;
    border-bottom: 1px solid #ddd;
    
}

.notes-table th {
    height: 45px;
}

.notes-table tr {
    background-color: #e9e9e9;
}

.notes-table th.checkbox {
    max-width: 16px;
    height: 75px;
}

.notes-table td.checkbox {
    max-width: 16px;
    align-content: center;
}

.notes-table tr:hover {
    background-color: #f5f5f5;
}

.td-note-date {
    width: 150px;
}

.btn-new-note {
    margin-bottom: 5px;
}

.tooltip-content {
    display: none;
    position: absolute;
    z-index: 1000;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    padding: 20px;
    color: black;
    white-space: pre-wrap;
    border-radius: 5px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    width: 600px;
    height: 500px;
}