/*
 * Globals
 */


/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
    color: #333;
    text-shadow: none; /* Prevent inheritance from `body` */
}


/*
 * Base structure
 */

body {
    font-weight: 400;
    line-height: 1.7;
    font-family: Inter, sans-serif;
}

.cover-container {
    max-width: 42em;
}

h1,
.text-mega {
    font-weight: 300;
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: .5em;
}


/*
 * Header
 */

header {
    background: #222;
}

.navbar-brand {
}

.navbar-toggler-icon {
    background: url(/img/burger.svg) no-repeat 50% 50%;
    background-size: 26px;
}

.nav-link {
    padding: .25rem 0;
    font-weight: 600;
    color: #121212;
    background-color: transparent;
    border-bottom: 2px solid transparent;
}

    .nav-link:hover,
    .nav-link:focus,
    .nav-link:active {
        color: #7a8c65;
        border-bottom-color: transparent;
        font-weight: 900;
    }

.admin-nav-link {
    padding: .25rem 0;
    font-weight: 600;
    color: #FDFDFD;
    background-color: transparent;
    border-bottom: 2px solid transparent;
}

.nav-masthead .nav-link + .nav-link {
    margin-left: 1rem;
}

.nav-masthead .active {
    color: #222;
    border-bottom-color: #fff;
    font-weight: 800;
}


.nav-masthead .nav-link + .nav-link {
    margin-left: 1rem;
}

.nav-masthead .active {
    color: #222;
    border-bottom-color: #fff;
}

.homepagehero {
    background: url(/img/appilates-hero-2.jpg) no-repeat center top;
    background-size: cover;
}

.cover-container p {
    margin: 2rem 0;
}

.text-lavendar {
    color: #E0CEFB;
}

.bg-lavendar {
    background: #E0CEFB;
}

.bg-appilatesaccent {
    background: #a5b7a0;
}

.bg-adminsection {
    background: #30332f;
}

.bg-sectionhead {
    background: linear-gradient(to bottom, white 93%, #a5b7a0 100%);
}

.bg-purple {
    background: #6B1AE4;
}

.bg-mandarin {
    background: #F3D1A5;
}

.btn-dark {
    background: #8b8d8a;
    border-color: #7a8c65;
    padding: 15px;
    font-size: 20px;
}

.btn-primary {
    background: #a5b7a0;
    border-color: #7a8c65;
    padding:15px;
    font-size:20px;
}
.btn-outline-primary {
    border-color: #a5b7a0;
    border-width: 2px;
    color: #7a8c65;
    padding: 15px;
    font-size: 20px;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #7a8c65;
    border-bottom-color: transparent;
    font-weight: 900;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: #7a8c65;
    border-bottom-color: transparent;
    font-weight: 900;
}

.btn-round {
    border-radius: 3rem;
}

.btn-pad {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.p-10 {
    padding-bottom: 10em;
    padding-top: 10em;
}

.icon-square {
    padding: 5px;
}

.icon-square,
.round-corners {
    border-radius: 1em;
}

.bg-splat {
    background: url(bg-splat.png) no-repeat 110% top;
    background-size: 800px;
}

sup {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 4px;
}


.login-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
}

.login-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 380px;
    width: 100%;
    text-align: center;
}

.tenantlogin-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 440px;
    width: 100%;
    text-align: center;
}

.login-logo {
    width: 300px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.login-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FD6A2B;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: 1.2rem;
    text-align: left;
}

.btn-login {
    width: 100%;
    background: #FD6A2B;
    color: #fff;
    border: none;
    font-weight: 600;
    border-radius: 4px;
    padding: 0.6rem 0;
    transition: background 0.2s;
}

.btn-login:hover {
    background: #e67600;
}


.max-width-10col {
    max-width: 960px; /* or whatever suits your design */
    margin: 0 auto;
}


.required::after {
    content: " *";
    color: red;
    font-weight: bold;
}

.wiki-card-hero {
    background-color: rgba(165, 183, 160, 0.2); /* Soft green overlay */
    border: 1px solid #ccc; /* Light gray border */
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(165, 183, 160, 0.3);
    transition: box-shadow 0.3s ease;
}

.wiki-card {
    height: 140px; 
    background-color: rgba(165, 183, 160, 0.2); /* Soft green overlay */
    border: 1px solid #ccc; /* Light gray border */
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(165, 183, 160, 0.3);
    transition: box-shadow 0.3s ease;
    overflow: hidden; /* Prevent content overflow */
}

.wiki-card, .wiki-card-hero {
    display: block; /* Ensure the <a> tag behaves like a block element */
    text-decoration: none; /* Remove underline from links */
    color: inherit; /* Inherit text color */
}

    .wiki-card:hover, .wiki-card-hero:hover {
        cursor: pointer; /* Show pointer cursor on hover */
        box-shadow: 0 4px 12px rgba(165, 183, 160, 0.5);
    }


.wiki-card-img-wrapper {
    background-color: #f5f5f5; /* Smoke-white */
    padding: 4px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
}

.wiki-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.wiki-card-content {
    flex: 1;
}

.wiki-card-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.wiki-card-lead {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

input[type="radio"] {
    appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid #ccc;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    vertical-align: middle;
    margin-top: 0px; /* Add spacing above */
    margin-bottom: 5px; /* Add spacing below */
}

    input[type="radio"]:checked {
        border-color: #a5b7a0;
        box-shadow: 0 0 8px 2px #a5b7a0;
    }

    input[type="radio"]::before {
        content: "";
        display: block;
        width: 12px;
        height: 12px;
        margin: 5px;
        border-radius: 50%;
        background-color: #a5b7a0;
        opacity: 0;
        transition: opacity 0.2s ease;
    }

    input[type="radio"]:checked::before {
        opacity: 1;
    }

label {
    margin-right: 12px; /* Increase distance between radio button and label */
    margin-left: 10px;
    margin-top:0.8rem;
    font-size: 22px;
    cursor: pointer;
}


input[type="checkbox"] {
    appearance: none;
    width: 26px;
    height: 26px;
    border: 2px solid #ccc;
    border-radius: 6px; /* Rounded corners for checkbox */
    background-color: #fff;
    cursor: pointer;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    vertical-align: middle;
    margin-top: 0px;
    margin-bottom: 5px;
    position: relative;
}

    input[type="checkbox"]:checked {
        border-color: #a5b7a0;
        box-shadow: 0 0 8px 2px #a5b7a0;
    }

    input[type="checkbox"]::before {
        content: "";
        position: absolute;
        top: 5px;
        left: 8px;
        width: 8px;
        height: 14px;
        border: solid #a5b7a0;
        border-width: 0 3px 3px 0;
        transform: rotate(45deg);
        opacity: 0;
        transition: opacity 0.2s ease;
    }

    input[type="checkbox"]:checked::before {
        opacity: 1;
    }


.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    text-decoration: none;
    color: #333;
    transition: color 0.2s ease;
}

    .back-link:hover {
        color: #7a8c65;
        font-weight:800;
    }
