@charset "UTF-8";

/* Update these variables to match your brand colors and styles */

:root {
    --bs-primary: #222222;
    --bs-primary-dark: #f8f6f2;
    --bs-foreground: #090909;
    --bs-secondary: #727169;
    --bs-foreground-button: #f8f6f2; 
    --h2-color: #090909;
    --h2-top-margin: 0.5em;
    --logo-start-offset: 0;
    --logo-top-offset: 2em;
    --bs-font-sans-serif: "Figtree";
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
}

/* End of brand colors and styles */

.btn {
    background-color: var(--bs-primary);
    color: var(--bs-foreground);
    border: none;
    border-radius: 0.65rem;
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    vertical-align: middle;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-outline-danger {
    background-color: white;
    color: #dc3545;
    border-color: #dc3545;
    font-weight: normal;
}

.btn.show {
    color: var(--bs-foreground);
    background-color: var(--bs-primary-dark);
    border-color: var(--bs-primary-dark);
}

.btn-primary {
    color: var(--bs-foreground-button);
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-secondary:hover {
    color: var(--bs-foreground-button) !important;
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}

.btn-primary:hover, .btn-secondary  {
    color: var(--bs-foreground);
    background-color: var(--bs-primary-dark);
    border-color: var(--bs-primary-dark);
}

.btn-primary:focus {
    color: var(--bs-foreground);
    background-color: var(--bs-primary-dark);
    border-color: var(--bs-primary-dark);
}

.btn:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 0.25rem var(--bs-primary);
}

.dropdown-item:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 0.25rem var(--bs-primary-dark);
}

.btn-primary:active{
    color: var(--bs-foreground)!important;
    background-color: var(--bs-primary-dark)!important;
    border-color: var(--bs-primary-dark);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.25) !important;
}

.btn-primary.disabled {
    color: var(--bs-foreground);
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.logo {
    margin-left: var(--logo-start-offset);
    margin-top: var(--logo-top-offset);
}

body {
    margin: 0;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    -webkit-text-size-adjust: 100%;
}

.full-height {
    min-height: calc(100vh - 57px);
}

#leftPanel {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.container.full-width {
    width: 90%; /* Adjust the width as needed */
    max-width: none; /* Remove max-width constraint */
    margin: auto; /* Center the container horizontally */
}

#configPanel {
    margin: auto 0;
}

.device-toolbar {
    margin-top: auto;
}


#appContainer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

#appetize {
    width: 100%; /* Ensure iframe fills its container */
    border: none; /* Remove iframe border */
}

.badge {
    margin-top: 0.7em;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

h2, .h2 {
    margin-top: var(--h2-top-margin);
    font-weight: 700;
    line-height: 1.25;
    color: var(--h2-color);
    font-size: calc(1.325rem + 0.9vw);
    margin-bottom: 1rem;
}

.dropdown-hover-all .dropdown-menu, .dropdown-hover > .dropdown-menu.dropend {
    margin-left:-1px !important
}

.dropdown-item:focus, .dropdown-item:hover {
    color: var(--bs-foreground);
    cursor: pointer;
    background-color: var(--bs-secondary);
}

#appetize {
    margin-top: 1em;
}

#appetize.portrait {
    width:100%;
    height:700px;
}

#appetize.landscape {
    width:100%;
    height:700px;
}

@media screen and (max-width: 750px) {
    #appetize.portrait {
        width:100%;
        height:600px;
    }
    #appetize.landscape {
        width:100%;
        height:300px;
    }
}

@font-face {
    font-family: Figtree;
    src: url(fonts/Figtree-Regular.woff) format("woff")
}

@font-face {
    font-display: swap;
    font-family: Figtree;
    font-weight: 500;
    src: url(fonts/Figtree-SemiBold.woff) format("woff")
}

@font-face {
    font-display: swap;
    font-family: Figtree;
    font-weight: 700;
    src: url(fonts/Figtree-SemiBold.woff) format("woff")
}

a { 
    text-decoration: none;
}
a:hover { 
    text-decoration: underline;
}

a.dropdown-item  {
    text-decoration: none;
}

.align-vertical {
    display: flex;
    align-items: center;
}

.bg-houzz-secondary { 
    color: #F0EEE9
}

.space-left {
    margin-left: 0.2em;
}

/* Pill Radio Button Group  */
.radio-group {
    display: flex;
    position: relative;
    background-color: #f8f6f2;
    border-radius: 50px;
    padding: 5px;
    margin: 20px auto;
    max-width: 400px;
  }
  .radio-group input[type="radio"] {
    display: none;
  }
  .radio-group label {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    margin: 0;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  .radio-group input[type="radio"]:checked + label {
    color: white;
  }
  .slider {
    position: absolute;
    top: 5px;
    bottom: 5px;
    width: calc(100% / 3 - 10px);
    background-color: #222222;
    border-radius: 50px;
    transition: left 0.3s ease;
    z-index: 0;
  }
  .radio-group label {
    z-index: 1;
  }