
.active_img{
    border: 1px solid black;
    border-radius: 2px;
}

body{
    overflow-x: hidden;
}

.tabs {
    border-radius: 20px;
    display: flex;
}

.tabs__sidebar {
    width: 150px;
    flex-shrink: 0;
    background: #FF6600;
}

.tabs__button {
    text-align: left;
    font-size: 14px;
    color: white;
    font-weight: bold;
    display: block;
    padding: 10px;
    padding-bottom: 15px;
    background-color: #FF6600;
    width: 100%;
    border: none;
    outline: none;
    cursor: pointer;
}

.tabs__button:active {
    background: #dddddd;
}

.tabs__button:not(:last-of-type) {
    border-bottom: 1px solid #cccccc;
}

.tabs__button--active {
    color: #FF6600;
    border-right: 2px solid #003323;
    background: white;
}

.tabs__content {
    background-color: whitesmoke;
    width: 70%;
    padding: 15px;
    font-size: 0.8rem;
    display: none;
}

.tabs__content--active {
    display: block;
}

.tabs__content> :first-child {
    margin-top: 0;
}

.user {
    padding-top: 30px;
    padding-bottom: 30px;
}

/* Dropdown Menu for selection boxes */

.dropdown__menuA,
.dropdown__menuB,
.dropdown__menuC,
.dropdown__menuD,
.dropdown__menuE,
.dropdown__menuF,
.dropdown__menuG,
.dropdown__menuH,
.dropdown__menuI,
.dropdown__menuK,
.dropdown__menuL,
.dropdown__menuM,
.dropdown__menuN,
.dropdown__menuO,
.dropdown__menuP,
.dropdown__menuR,
.dropdown__menuS,
.dropdown__menuU,
.dropdown__menuV,
.dropdown__menuW,
.dropdown__menuFilter
{
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    padding-bottom: 5px;


}

.hide{
    max-height: 0;
    display: none;
    padding-bottom: 5px;
    transition: all 0.3s;
}


/* NAVIGATION*/
.logo{
    margin: 0.5rem;
}

.primary-header{
    align-items: center;
    background-color: #D6D6D6;
    z-index: 10002;
}

.mobile-nav-toggle{
    display: none;
    z-index: 10002;
}

.primary-navigation{
    z-index: 10002;
    list-style: none;
    /*background: hsl(0 0% 0% / 0.75);*/
}

.primary-navigation li a:hover {
    text-decoration-color: black;
}

@supports (backdrop-filter: blur(1rem)) {
    .primary-navigation{
        /*background: hsl(0 0% 0% / 0.75);*/
        backdrop-filter: blur(1rem);
    }
}

.primary-navigation li {
    color: #727272;
    margin-right: 1.5rem;
    margin-left: .5rem;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
}

.primary-navigation li a{
    padding: 2px;
}

@media (max-width: 600px){
    .primary-navigation{
        position: fixed;
        inset: 0 0 0 30%;

        flex-direction: column;
        padding: min(30vh, 10rem) 2rem;

        transform:translateX(100%) ;
        transition: transform 350ms ease-out;

    }

    .primary-navigation li{
        margin-bottom: 2rem;
    }

    .primary-navigation[data-visible="true"]{
        transform: translateX(0%);
    }

    .mobile-nav-toggle{
        display: block;
        position: absolute;
        width: 1rem;
        background-color: transparent;
        background-image: url('/images/svgs/menu.png');
        background-repeat: no-repeat;
        background-size: contain;
        aspect-ratio: 1;
        top: 2rem;
        right: 2rem;
        z-index: 10002;
    }

    .mobile-nav-toggle[aria-expanded="true"]{
        z-index: 10004;
        background-image: url('/images/svgs/close.svg');
    }
}


/* END OF NAVIGATION */

/* COOKIE CONSENT */
.cookie-banner{
    position: sticky;
    bottom: 0;

}

/* sliding div on-hover on projects index page */


.hide-div{
    display: none;
}

.slide-in{
    animation:slide-up-anim 500ms forwards;
}

.slide-down{
    animation:slide-down-anim 500ms forwards;
}

/*.custom-hover-div{*/
/*    animation: slide-up 1000ms forwards, fade-in 500ms forwards;*/
/*}*/

@keyframes slide-up-anim {
    0% {
        transform: translateY(100%);
    }

    100%{
        transform: translateY(0%);
    }
}

@keyframes slide-down-anim {
    0% {
        transform: translateY(0%);
    }

    100%{
        transform: translateY(100%);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100%{
        opacity: 1;
    }
}

@keyframes fade-out {
    0% {
        opacity: 0;
    }

    100%{
        opacity: 1;
    }
}


/* end of sliding div on-hover on projects index page */


/* Target h2 specifically in post content */
/* Heading styles for content within .description */
.description h1 {
    font-size: 2rem;
    font-weight: bold;
    margin: 1.5rem 0;
    color: inherit;
    line-height: 1.2;
}

.description h2 {
    font-size: 1.75rem;
    font-weight: bold;
    margin: 1.25rem 0;
    color: inherit;
    line-height: 1.3;
}

.description h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 1rem 0;
    color: inherit;
    line-height: 1.4;
}

.description h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0.875rem 0;
    color: inherit;
    font-style: normal;
}

.description h5 {
    font-size: 1.125rem;
    font-weight: bold;
    margin: 0.75rem 0;
    color: inherit;
    text-transform: none;
}

.description h6 {
    font-size: 1rem;
    font-weight: bold;
    margin: 0.5rem 0;
    color: inherit;
    font-style: normal;
}

.description a {
  color: #EA580C; /* Tailwind's orange-600 */ 
  font-weight: 600;
  text-decoration: underline; /* Optional: Adds underline (remove if not needed) */
  transition: color 0.2s ease; /* Optional: Smooth hover effect */
}

/* Hover state (optional) */
.description a:hover {
  color: #C2410C; /* Darker orange (Tailwind's orange-700) */
}

/* Style ONLY lists inside .description */
.description ul {
  list-style-type: disc;       /* Force disc bullets */
  margin-left: 1.5rem;        /* Indentation */
  padding-left: 1rem;         /* Bullet-text spacing */
  line-height: 1.6;           /* Readability */
  margin-top: 0.5rem;         /* Space above list */
  margin-bottom: 1rem;        /* Space below list */
}

.description ul li {
  margin-bottom: 0.25rem;     /* Spacing between items */
  color: #374151;             /* Gray-700 (adjust as needed) */
}

/* Nested lists */
.description ul ul {
  list-style-type: circle;    /* Nested bullets */
  margin-left: 1.5rem;       /* Indent nested lists */
}
