html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
}

.SidebarButton {
    /* Remove button styling */
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.MainPage {
    display: flex;
}
.MainTable {
    width: 100%;
    border-collapse: collapse;
}

    .MainTable th, .MainTable td {
        border: 1px solid black;
        padding: 8px;
        text-align: left;
    }

    .MainTable th {
        background-color: #f2f2f2; /* Optional: Add background color to header cells */
    }


div.LeftModules {
    flex: 1;
    margin-left: 0px;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Create a 2x2 grid */
    gap: 10px; /* Adjust the gap between grid items as needed */
}

.grid-item {
    /* Apply styles to grid items, e.g., width, background color, etc. */
    padding: 10px;
  
}


.Description {
    border-radius: 5px; /* Add rounded corners */
    padding: 10px; /* Add padding to the textarea */
}

.form-group {
    margin: 10px; /* You can adjust the margin as needed */
}

#topbardiv {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#topbarlink {
    text-decoration: none;
    color: inherit;
    background-color: transparent;
    cursor: pointer;
}

.TopBarButton {
    float: right; /* Float to the right */
    display: flex; /* Enable flex properties for the button container */
    align-items: center; /* Center vertically within the header */
}


/* Remove all styling from the <a> elements inside the sidebar-link class */
.sidebar-link a {
    text-decoration: none; /* Remove underlines and other text decoration */
    color: inherit; /* Inherit the text color from its parent */
    background: transparent; /* Remove any background color or image */
    border: none; /* Remove borders */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
}

.BottomButton {
    float: right;
    margin-right: 10px;
    margin-bottom: 10px;
}

.UpdateButton {
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
}

.CreateTableContainer {
    max-height: 420px;
    overflow-y: auto;
}

.containercreate {
    margin: 15px;
}



/* Position the search icon */
.search-icon {
    position: absolute;
    top: 50%;
    right: 15px; /* Adjust this value to your desired position */
    transform: translateY(-50%);
    cursor: pointer;
}

/* Hide the search bar initially */
.search-bar {
    display: none;
    position: absolute;
    top: 50%;
    right: 10px; /* Adjust this value to your desired position */
    transform: translateY(-50%);
    background-color: white;
    padding: 5px;
    border: 1px solid #ccc;
}

.SearchList {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .SearchList > li:nth-child(odd) {
        background-color: #f0f0f0; /* Light background color for odd rows */
    }

    .SearchList li:nth-child(even) {
        background-color: #e0e0e0; /* Slightly darker background color for even rows */
    }
.downloadButton {
    float: right;
}
#downloadimgversionsmain {
    height: 20px;
}
#downloadimgversions {
    height:50px;
}

.note-card {
    margin:15px;
}
.max-scroll-height {
    max-height: 700px; /* Adjust the maximum height as needed */
    overflow-y: auto; /* Add a vertical scrollbar when content exceeds the maximum height */
}


#logoImg {
    height:50px;
    margin-left:15px;
    margin-top:15px;
}
.margin-small {
    margin: 4px;
}



/* Apply styles to the table */
.UpdatesTable {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

    /* Style for table header (th) */
    .UpdatesTable th {
        border: 1px solid black;
        background-color: #f2f2f2;
        padding: 8px;
        text-align: left;
    }

    /* Style for table cells (td) */
    .UpdatesTable td {
        border: 1px solid black;
        padding: 8px;
        text-align: left;
    }

.sortArrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid;
    vertical-align: middle;
    margin-left: 4px; /* Adjust as needed */
}


.sortAsc {
    transform: rotate(180deg);
}