#scoutingTable td, #scoutingTable th {
    text-align: center; /* Center-aligns text horizontally */
    vertical-align: middle; /* Center-aligns text vertically */
}

td.button-container {
    display: flex;
    gap: 5px; /* Adds spacing between the buttons */
}

/* Style for the tooltip */
.timer-cell {
    position: relative;
    cursor: pointer;
}

.timer-cell:hover::after {
    content: attr(title); /* Display the content of the 'title' attribute */
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px;
    background-color: #333;
    color: white;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    animation: fadeIn 0.3s forwards;
}

/* Tooltip fade-in animation */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Optional: Style for the table to give a better experience */
table {
    cursor: pointer;
}

header {
    display: flex;
    align-items: center;
    padding: 20px;
}

.logo {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.logo img {
    width: 80%;
    height: 80%;
}

p {
    font-size: 12px;
}

.structure {
    font-size: 10px;
}

.btn-custom-small {
  padding: 2px 8px;
  font-size: 10px;
}

#notes-list {
    max-height: 200px;
    overflow-y: auto;
}

.structureInformationTextarea {
    margin-bottom: 10px;
}


.oi {
    font-size: 9px;
    margin-bottom: 0px;
}

h7 {
    font-size: 12px;
}

h6 {
    margin-top: 1rem;
}

.fit-ul {
    font-size: 11px;
    padding-left: 0px;
}

.login {
    margin-top: 20%;
}

textarea {
  resize: none;
}


.table td {
    vertical-align: middle; /* Vertically center the content */
}


.tab-content > .tab-pane {
    display: none;
}

.tab-content > .tab-pane.show {
    display: block;
}

html {
  overflow-y: scroll;
}

body { 
  padding-right: 0 !important;
}
