﻿.tab-content ul li::marker {
  color: #0083db;
}

.tab-content ul li ol li::marker {
  color: #404040;
}

.tab-content ul li > *{
  grid-column: 2;
}

.tab-content ul li > p:first-child{
  grid-row: 1;
  margin: 0;
}

ol > li > p {
  margin: 0;
}

ol > li {
  margin-bottom: 1rem;
  list-style-position: outside;
}

ol {
    display: flex;
    flex-direction: column;
}

.tab-content ul li::before p {
    display: inline-block;
}

.tab-content ul li p {
  display: inline;
  margin: 0;
}

.ah-right {
    display: flex;
    align-content: center;
}

.fa-chevron-right {
    padding-right: 5px;
}

body {
    height: 100vh;
}

.admin-hub {
    background-color: white;
    padding: 20px;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.tab {
    flex: 1 1 calc(10% - 16px);
    background-color: transparent;
    padding: 10px;
    position: relative;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1.4rem;
    display: flex;
    flex-direction: column;
    align-content: center;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
}
.tab.active {
        opacity: 1;
}
.tab::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px; /* Height of the top border */
    background-color: #67bae9; /* Border background color */
    border-radius: 4px 4px 0px 0px; /* Rounded corners for top border */
}
.tab.active::before {
    background-color: #0083db; /* New color for the active button's top border */
    height: 12px;
}

.tab-icon {
    max-width: 6rem;
    width: 6rem;
}

.admin-hub .content {
    margin-top: 20px;
    display: block!important;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    padding: 0 3rem;
}

ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 8px;
}

@media (max-width: 600px) {
    .tab {
        flex: 1 1 100%;
    }
}

@media (max-width: 720px) {
    .tab-content ul {
        column-count: unset;
        column-gap: 20px;
        padding-top: 1rem;
        column-width: unset;
        padding-left: 0;
        margin-left: 0;
    }
    .ah-container {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: space-between;
        text-align: center;
    }
    .ah-left, .ah-right {
        width: 100%;
    }
}

@media only screen and (max-device-width: 480px) {
    #mc-main-content {
        width: 96vw!important;
    }
}