#pageContent {
    min-width: 1000px;
}

#putMenu {
    min-width: 1000px;
}

/* Style for the sidebar */
.sidebar {
    min-height: 100vh;
    width: 250px;
    background-color: #333;
    color: #fff;
    display: flex;
    flex-direction: row;
    transition: 0.5s;
}

/* Style for the tab links in the sidebar */
.tab {
    margin: 10px 15px;
    padding: 10px 10px;
    text-align: left;
    text-decoration: none;
    min-width: 175px;
    color: #fff;
    display: block;
    border: 1px solid gray;
    border-radius: 66px 33px;
    cursor: pointer;
}

.tab:hover {
    background-color: #cbcbcb;
    border: 1px solid black;
    color: black;
}

/* Style for the content area */
.tabContentContainer {
    /* Adjust this value to leave space for the sidebar */
    width: 100%;
    padding: 20px;
}

.leftSB {
    flex: 1 1 90%;
    overflow: hidden;
    transition: 0.5s;
}

.rightSB {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    text-align: center;
}

#sideBarArrow {
    position: sticky;
    font-size: 30px;
    top: 500px;
    left: 190px;
}

.tabContent {
    display: none;
    border: 1px solid white;
}

.tabContent.active {
    display: block;
}

.tabContent h1 {
    text-align: center;
}

.buttonsAndFilters{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.buttonsContainer {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.filtersContatiner {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.btn-container {
    margin: 15px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

tbody {
    border-top: 3px solid white;
}

.tableCell {
    padding: 10px;
}

.tableCell.Sm {
    flex: 1 1 80px
}

.tableCell.Md {
    flex: 2 1 100px
}

.tableCell.Lg {
    flex: 4 1 150px
}

tr:nth-child(even) {
    background-color: #394658;
}

tr {
    border-bottom: 1px solid #506581;
}

.checkBox {
    cursor: pointer;
}

/* Styles for the popup */
.popup {
    position: fixed;
    top: 150vh;
    /* Start below the screen */
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #394658;
    /* Updated with rgba */
    padding: 25px 50px;
    border: 4px solid #506581;
    box-shadow: 0px 0px 12px 13px rgba(0, 0, 0, 0.1);
    z-index: 1;
    color: #ffffff;
    transition: top 0.5s cubic-bezier(0.52, 0.49, 0.46, 1.2);
}

.popup.active {
    top: 50%;
    /* Slide up to the middle of the screen */
}

.popup-content {
    max-width: 400px;
    margin: 0 auto;
}

.popup-content h2 {
    margin: 20px auto;
    text-align: center;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #ffffff;
    /* Close button color */
}

.formRow {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 10px auto;
}

.formRow input {
    appearance: none;
}

.addBtn {
    text-align: center;
    margin-top: 25px;
}

/* Other styles as needed */