/* Import Fonts */
@import url("https://use.typekit.net/jpy3ajh.css");

/* Global Styles */
body {
    font-family: 'quire-sans', sans-serif;
    font-size: 16px;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align inner container to the top */
    align-items: center; /* Center horizontally */
    height: 100vh; /* Use min-height instead of height */
    background-color: #1C1C1C;
    text-align: center;
    color: #1C1C1C
    
}

/* Brand Logo */
.brand-identity-logo {
    margin: 0 auto;
    position: sticky;
    width: 250px;
    height: 43px;
    padding: 20px;
    background: url('/BrandIdentity/SEQR.ONLINE_Brand_Identity_Logo.png') no-repeat center;
    background-size: contain;
    display: block;
    z-index: 1000;
}



/* Brand Logo small */
.brand-identity-logo_small {
    margin: 0 auto;
    position: sticky;
    width: 100px;
    height: 20px;
    padding: 10px;
    background: url('/BrandIdentity/SEQR.ONLINE_Brand_Identity_Logo.png') no-repeat center;
    background-size: contain;
    display: block;
    z-index: 1000;
}

/* Brand Logo small */
.brand-identity-logo_footer {
    margin: 0 auto;
    position: sticky;
    width: 100px;
    height: 20px;
    padding: 10px;
    background: url('/BrandIdentity/SEQR.ONLINE_Brand_Identity_Logo.png') no-repeat center;
    background-size: contain;
    display: block;
    z-index: 1000;
}

/* Containers */
.main-hybridcontainer {
    position: relative;
    margin: 20px;
    
    max-width: 800px;
    width: 95%;
    min-width: 400;
    border-radius: 10px;
    overflow: visible;
    height: 95%;
    background-color: #E6E6E6 ;
  
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: top;
}

.main-desktopcontainer {
 width: calc(100% - 16px);
    height: calc(100% - 8px);
    min-width: 400px;
    margin-top: 4px;
    margin-bottom: 4px;
    margin-left: 16px;
    margin-right: 16px;
    background-color: #E6E6E6 ;
    border-radius: 10px;
     display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.inner-desktopcontainer{
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    background-color: #E6E6E6;
    border-radius: 8px;
    border-color: #E6E6E6;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
     margin-top: 4px;
    margin-bottom: 4px;
    margin-left: 16px;
    margin-right: 16px;
     align-items: center;
     overflow: hidden;
}

.inner-container {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    background-color: #ffffff;
    border-radius: 8px;
    box-sizing: border-box;
    overflow: auto;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding-left:8px;
    padding-right:8px;   padding-top:8px;
       padding-bottom:8px;
    align-items: center
}

/* Responsive */
@media (max-width: 300px) {

    .main-hybridcontainer,
    .main-desktopcontainer {
        max-width: 100%;
        min-width: 400;
    }
}

/* Typography */
h1 {
    font-family: 'quire-sans', sans-serif;
    margin: 10px 10px;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.5;
    color: #1C1C1C
}

p {
    font-family: 'quire-sans', sans-serif;
    margin: 10px 20px;
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.5;
  color: #1C1C1C
}

a {
    color: #0066CC;
    text-decoration: none;
    font-weight: 400;
}

a:hover {
    color: #0066AA;
}

.highlight {
    font-weight: 700;
    color: #0066CC;
}

.footer {
    font-family: 'quire-sans', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    margin-top: 20px;
    color: #aaa;
}


/* 2: Buttons */
.info-button {
    padding: 10;
    height: 20px;
    width: auto;
    font-size: 0.8rem;
    color: #fff;
    background: transparent;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    position: center;
    overflow: visible;
}

.info-button:hover {
    background-color: transparent;
}



/* Button container for alignment */
.button-container {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    width: 100%; /* Ensure the container uses the full width */
}

/* General button styles */
.button {
    background-color: #0066CC;
    color: white;
    padding: 10px 20px;
    height: 40px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    width: 90%; /* Button takes 90% of the container width */
    margin: 0 auto; /* Centers the button inside its container */
    box-sizing: border-box; /* Ensure padding doesn't affect width */
}

/* Specific styles for secondary buttons */
.secondary-button {
    background-color: #525252; /* Grey color for the second button */
}

.button:hover {
    color: rgb(226, 226, 226);
}

.close-button {
    background-color: #dc3545;
    color: white;
}

.close-button:hover {
    background-color: #a71d2a;
}



.toggle-button:hover {
    background-color: #0066CC;
}

.toggle-button-portal {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 15px;
    background-color: #0066CC;
    color: #ffffff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    z-index: 1001;
}

/* Tabs */
.tabs {
    display: flex;
    justify-content: space-around;
    margin: 0;
    border-bottom: 1px solid #ddd;
}

.tab {
    padding: 0px 5px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.tab:hover {
    color: #0066CC;
}

.tab.active {
    color: #0066CC;
    font-weight: 700;
    font-size: 110%;
}

.tab.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #0066CC;
    margin-top: 3px;
}