html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.collapsed .icon-class:before {
    content: '>';
}

.icon-class:before {
    content: 'v';
}

.noticeMessage {
    padding: 10px;
    border-radius: 10px;
    background-color: darkgreen;
    color: white;
    margin: 10px;
    font-size: 1.2em;
    font-weight: bold;
}

#addNewEntryForm {
    border: solid 1px white;
    border-radius: 10px;
    padding: 10px;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
    background-color: #2b2b2b; /* Dark background for the table */
    border-radius: 8px;
    overflow: hidden;
    color: #f1f1f1; /* Light text for readability */
}

    .table thead {
        background-color: #343a40;
        color: #fff;
    }

    .table th, .table td {
        padding: 12px 15px;
        border: 1px solid #555; /* Subtle border for separation */
    }

    .table tbody tr {
        transition: background-color 0.2s ease-in-out;
        cursor: pointer;
    }

        .table tbody tr:hover {
            background-color: #383838; /* Highlight effect on hover */
        }