/* --- Start of alert.css ---*/
/* 容器 */
#alert-container {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 400px;
}

#alert-container.top-right {
    top: 20px;
    right: 20px;
    align-items: flex-end;
}

#alert-container.top-center {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
}

/* 基礎樣式 */
.alert {
    min-width: 320px;
    max-width: 400px;
    padding: 16px 20px;
    margin-bottom: 10px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    pointer-events: auto;
    cursor: pointer;
    color: white;
    opacity: 0; /* 動畫初始狀態 */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 狀態樣式 */
.alert.success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.9), rgba(22, 163, 74, 0.9));
}
.alert.info {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(37, 99, 235, 0.9));
}
.alert.warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.9), rgba(217, 119, 6, 0.9));
}
.alert.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.9), rgba(220, 38, 38, 0.9));
}

/* 內容 */
.alert-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.alert-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
}

.alert-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.alert-message {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
    line-height: 1.4;
}

/* 進度條 */
.alert-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 0 0 12px 12px;
}

@keyframes progress-shrink {
    from { width: 100%; }
    to { width: 0%; }
}

/* --- 動畫 --- */
@keyframes slideInRight { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes slideOutRight { from { transform: translateX(0); opacity: 1; } to { transform: translateX(100%); opacity: 0; } }
@keyframes slideInDown { from { transform: translateY(-100px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes slideOutUp { from { transform: translateY(0); opacity: 1; } to { transform: translateY(-100px); opacity: 0; } }

.top-right .alert.show { animation: slideInRight 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
.top-right .alert.hide { animation: slideOutRight 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
.top-center .alert.show { animation: slideInDown 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
.top-center .alert.hide { animation: slideOutUp 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards; }


/* 懸停效果 */
.alert:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.alert:hover .alert-progress {
    animation-play-state: paused;
}

/* 關閉按鈕 */
.alert-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: background 0.2s;
}

.alert-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* 復原按鈕樣式 */
.undo-button {
    background-color: #f0ad4e;
    color: white;
    border: none;
    padding: 0.5em 1em;
    border-radius: 3px;
    cursor: pointer;
    margin-left: 1em;
    font-weight: bold;
    white-space: nowrap;
}

/* --- End of alert.css ---*/

/* --- Start of loading.css ---*/
#loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#loading-container.show {
    opacity: 1;
    visibility: visible;
}

.loading-box {
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 320px;
    padding: 32px;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#loading-container.show .loading-box {
    transform: scale(1);
}

.loading-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.loading-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #4CAF50;
    margin: 0 6px;
    animation: dot-bounce 1.4s infinite ease-in-out both;
}

.loading-dots .dot:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dots .dot:nth-child(2) {
    animation-delay: -0.16s;
}

.loading-text {
    font-size: 1.2rem;
    color: #212121;
    font-weight: 500;
}

@keyframes dot-bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1.0);
    }
}
/* --- End of loading.css ---*/

/* --- Start of voice.css ---*/
.voice-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 1000;
}

.voice-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.voice-popup-container {
    background: white;
    border-radius: 24px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 380px;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.voice-popup-overlay.active .voice-popup-container {
    transform: scale(1);
}

.voice-popup-header {
    display: flex;
    justify-content: flex-end;
    padding: 12px;
}

.close-popup-button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.close-popup-button .material-icons {
    color: #9e9e9e;
    font-size: 28px;
}

.voice-popup-content {
    padding: 0 32px 48px;
    text-align: center;
}

.mic-animation-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 20px auto 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mic-icon-background {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(145deg, #e0f7fa, #b2ebf2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.mic-icon {
    font-size: 50px;
    color: #00796b;
}

.wave {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(74, 144, 226, 0.2);
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    animation: wave-animation 2.5s infinite ease-out;
    z-index: 1;
}

.wave-2 {
    animation-delay: 0.8s;
}

.wave-3 {
    animation-delay: 1.6s;
}

.listening-text {
    font-size: 1.3rem;
    color: #37474f;
    font-weight: 500;
}

@keyframes wave-animation {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.2);
        opacity: 0;
    }
}

.webrecognition-hidden {
position: absolute;
    opacity: 0;
    z-index: 1;
    cursor: pointer;
}

.webrecognition-hidden ion-row, .webrecognition-hidden ion-col {
padding: 0;
    margin: 0;
}

.webrecognition-hidden ion-button {
margin: 0;
}
/* --- End of voice.css ---*/

/* --- Start of confirm.css ---*/
#confirm-container .confirm-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10000;
}

#confirm-container .confirm-box.show {
    opacity: 1;
}

#confirm-container .confirm-box.hide {
    opacity: 0;
}

#confirm-container .confirm-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

#confirm-container .confirm-dialog {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 400px;
    z-index: 1;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

#confirm-container .confirm-box.show .confirm-dialog {
    transform: scale(1);
}

#confirm-container .confirm-header {
    padding: 1em;
    font-size: 1.2em;
    font-weight: bold;
    border-bottom: 1px solid #eee;
}

#confirm-container .confirm-body {
    padding: 1.5em 1em;
    line-height: 1.6;
}

#confirm-container .confirm-footer {
    padding: 1em;
    display: flex;
    justify-content: flex-end;
    gap: 0.8em;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

#confirm-container .confirm-btn {
    border: none;
    padding: 0.8em 1.2em;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
    font-weight: bold;
    transition: background-color 0.2s;
}

#confirm-container .confirm-btn-confirm {
    background-color: #4CAF50;
    color: white;
}

#confirm-container .confirm-btn-confirm:hover {
    background-color: #45a049;
}

#confirm-container .confirm-btn-cancel {
    background-color: #f1f1f1;
    color: #333;
}

#confirm-container .confirm-btn-cancel:hover {
    background-color: #ddd;
}
/* --- End of confirm.css ---*/

/* --- Start of marked.css ---*/
/* markdown-styles.css */
.markdown-content {
  line-height: 1.2;
  color: #333;
  display: flex;
  flex-direction: column;
  padding: 0.7em;
}

.markdown-content p {
  margin: 0.5em 0;
  line-height: 1.2;
}

.markdown-content h1 {
  margin: 1.2em 0 0.6em 0;
}

.markdown-content h2 {
  margin: 1em 0 0.5em 0;
}

.markdown-content h3 {
  margin: 0.8em 0 0.4em 0;
}

.markdown-content img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
}

/* 針對列表的緊湊樣式 */
.markdown-content ul,
.markdown-content ol {
  margin: 0;
  padding-left: 2em;
}

.markdown-content li {
  margin: 0.1em 0;
  line-height: 1.2;
}

/* 重要：針對巢狀列表的特殊處理 */
.markdown-content li ul,
.markdown-content li ol {
  margin: 0.1em 0;
  padding-left: 1em;
  line-height: 1.2;
}

.markdown-content li li {
  margin: 0;
}

.markdown-content ul ul,
.markdown-content ol ol,
.markdown-content ul ol,
.markdown-content ol ul {
  margin: 0;
}
/* --- End of marked.css ---*/

/* --- Start of button.css ---*/
.single-icon-center-container {
    min-height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-button {
    border: none;
    border-radius: 50%;
    width: 4em;
    height: 4em;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #4A90E2, #2980B9);
}

.icon-button .material-icons {
    color: white;
    font-size: 2em;
}

.outset-button {
    padding: 1.5em 1.5em;
    font-size: 1em;
    margin: 0.5em;
    cursor: pointer;
    border: outset 0.1em black;
    border-radius: unset;
    width: 100%;
    background-color: transparent;
    color: black;
}

.util-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.3em;
    height: 3.3em;
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    color: #636161;
}
/* --- End of button.css ---*/

/* --- Start of animation.css ---*/
.pressable:active {
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform: translateY(1px);
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 2vh 2vh 2vh 2vh;
}
/* --- End of animation.css ---*/

/* --- Start of select.css ---*/
.select-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #4a90e2;
}

.select {
    --background: #ffffff;
    --color: #333333;
    --padding-start: 15px;
    --padding-end: 15px;
    --padding-top: 10px;
    --padding-bottom: 10px;
    background-color: #ffffff;
    font-size: 1.2em;
    font-weight: 500;
    width: auto;
    flex-grow: 1;
    border: 1px solid #cccccc;
    border-radius: 8px;
    box-shadow: none;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.select.center {
    margin: 0 5px;
}

.select:focus-within {
    border-color: #4a90e2;
    border-style: solid;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
    outline: none;
}

.select.ion-focused {
    border-color: #4a90e2;
    border-style: solid;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
    outline: none;
}

.select::part(text) {
    color: #333333;
    font-size: 16px;
    flex: 1;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.select::part(icon) {
    color: #666666;
    opacity: 1;
    font-size: 18px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.select.select-expanded::part(icon) {
    transform: rotate(180deg);
}

ion-alert {
    --background: #ffffff;
    --border-radius: 20px;
    --box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}


ion-alert .alert-radio-group {
    border: none !important;
    padding: 8px 0;
}

ion-alert .alert-radio-button {
    padding-top: 4px;
    padding-bottom: 4px;
    margin: 0 16px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}


ion-alert .alert-radio-label {
    font-size: 17px;
    color: #333333;
    margin-left: 16px;
}

ion-alert .alert-radio-button[aria-checked="true"] .alert-radio-label {
    color: #4a90e2;
    font-weight: 600;
}


ion-alert .alert-radio-icon {
    border-color: #cccccc;
}


ion-alert .alert-radio-button[aria-checked="true"] .alert-radio-icon {
    border-color: #4a90e2;
}


ion-alert .alert-radio-inner {
    background-color: #4a90e2;
}


ion-alert .alert-radio-button .alert-button-inner {
    border-bottom: 1px solid #f0f0f0;
}


ion-alert .alert-radio-button:last-of-type .alert-button-inner {
    border-bottom: none;
}


ion-alert .alert-button-group {
    padding: 12px 16px 12px;
}

ion-alert .alert-button {
    font-size: 16px;
    font-weight: 600;
    text-transform: none;
    border-radius: 8px;
    margin: 0 8px !important;
    height: 44px;
}

ion-alert .alert-button:not(.alert-button-role-cancel) {
    background: #4a90e2;
    color: #ffffff;
}

ion-alert .alert-button.alert-button-role-cancel {
    background: #f0f2f5;
    color: #555555;
}
/* --- End of select.css ---*/

/* --- Start of card.css ---*/
.food-detail-container {
    transition: all 0.3s ease;
    border: none;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 1.2em 0 !important;
}

.food-detail-container .food-image-container {
    overflow: hidden;
    margin: auto 0 !important;
}

.food-detail-container .food-image-container img {
    border-radius: 0.8em;
    border: solid 0.2em rgba(0, 0, 0, 0.4);
}

.food-detail-container .food-details-card {
    padding: 0 1.2em !important;
}

.food-name {
    font-size: 2em;
    color: #2C3E50;
    font-weight: bold;
}

.food-subtitle-icon {
    margin: 0.2em 0.2em 0.2em 0;
}

.food-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    overflow: hidden;
    padding: 0px 0px 0px 0;
    margin: 0;
    margin-bottom: 20px;
}

.food-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.food-title-section {
    display: flex;
    flex-direction: column;
    align-items: baseline;
}

.food-title {
    display: flex;
    align-items: baseline;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
    width: 100%;
}

.food-title-section hr {
    border: none;
    height: 2px;
    background-color: black;
    width: 100%;
    margin: 2px 0;
}


/* --- End of card.css ---*/

/* --- Start of progressbar.css ---*/
.progressbar-container {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    height: 6px;
    position: relative;
    overflow: hidden;
    padding: 0px 0 0 0;
    margin: 0px 0 0 0;
}

.progressbar {
    height: 100%;
    border-radius: 10px;
    transition: width 0.3s ease;
    position: static;
    display: block;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
}

.status span {
    font-size: 1.25rem;
    margin-right: 12px;
}

.status-green {
    display: flex;
    align-items: center;
    background-color: #E8F5E9;
    color: #2ECC71;
    border: 1px solid #2ECC71;
    font-weight: bold;
    font-size: 1rem;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 20px;
}

.status-yellowgreen {
    display: flex;
    align-items: center;
    background-color: #F1F8E9;
    color: yellowgreen;
    border: 1px solid yellowgreen;
    font-weight: bold;
    font-size: 1rem;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 20px;
}

.status-orange {
    display: flex;
    align-items: center;
    background-color: #FFF3E0;
    color: orange;
    border: 1px solid orange;
    font-weight: bold;
    font-size: 1rem;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 20px;
}

.status-red {
    display: flex;
    align-items: center;
    background-color: #FFEBEE; /* 或 #FFEBEE */
    border: 1px solid #f44336;
    color: #f44336;
    font-weight: bold;
    font-size: 1rem;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 20px;
}

.status-gray {
    display: flex;
    align-items: center;
    background-color: #F5F5F5;
    color: gray;
    border: 1px solid gray;
    font-weight: bold;
    font-size: 1rem;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 20px;
}

.status-alert {
    /* background-color: #FFF1F0;
    border: 1px solid #FFCCC7; */
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.status-alert-icon {
    font-size: 1.5rem;
    margin-right: 12px;
    /* color: #D9363E; */
}

.status-alert-text {
    font-weight: 500;
    font-size: 0.95rem;
    /* color: #A82D34; */
}
/* Nutrient Bar Colors */
.bg-nutrient-low { background-color: black !important; } /* Light Grey */
.bg-nutrient-1 { background-color: #42A5F5 !important; } /* Blue */
.bg-nutrient-2 { background-color: #66BB6A !important; } /* Green */
.bg-nutrient-3 { background-color: #FFA726 !important; } /* Orange */
.bg-nutrient-4 { background-color: #EF5350 !important; } /* Red */
.bg-nutrient-5 { background-color: #AB47BC !important; } /* Purple */
.bg-nutrient-6 { background-color: #26A69A !important; } /* Teal */
.bg-nutrient-7 { background-color: #FFCA28 !important; } /* Amber */
.bg-nutrient-8 { background-color: #78909C !important; } /* Blue Grey */
.bg-nutrient-9 { background-color: #5C6BC0 !important; } /* Indigo */
/* --- End of progressbar.css ---*/

/* --- Start of header.css ---*/
.top-nav {
    background: #FFFFFF;
    padding: 1em 1.2em;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #E8EAED;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.top-nav .nav-button {
    background: none;
    border: none;
    padding: 1em 0.8em 0.8em;
    color: #5F6368;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.top-nav .actions .nav-button {
    margin-left: 16px;
}

.nav-title {
    font-size: 20px;
    font-weight: 500;
    color: #1F1F1F;
    margin-left: 16px;
}
/* --- End of header.css ---*/

/* --- Start of food_info.css ---*/
.food-tag {
    background-color: #E8F3FF;
    color: #0063D1;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
}

.info-container{
    padding: 0 1.4em 1em;
    display: flex;
    flex-direction: column;
}

.info-list {
    padding: 0;
    display: flex;
    flex-direction: column;
    font-size: 1rem;
}

.info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7em 0;
}

.info-group-row{
    padding: 0.2em 0;
}

.info-group {
    margin: 0.7em 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.info-list .info-row:not(:last-child), .info-border{
  border-bottom: 1px solid #E0E0E0;
}

.info-row .info-inline{
    display: inline-block;
}

.info-title{
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #757575
}

.info-text {
    font-weight: 600;
    color: #1A2533;
    margin-left: 4px;
}

.info-icon {
    color: #4CAF50;
    font-size: 1.3em;
    margin-right: 1em;
}
/* --- End of food_info.css ---*/

/* --- Start of config.css ---*/
.bg {
    background-color: #F0F4F8 !important;
    background-image: radial-gradient(circle at 10% 20%, rgba(74, 144, 226, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 50%, rgba(39, 174, 96, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 30% 80%, rgba(241, 196, 15, 0.05) 0%, transparent 15%) !important;
    padding-bottom: 70px !important;
}

.bg-green {
    background-color: green !important;
}

.bg-yellowgreen {
    background-color: yellowgreen !important;
}

.bg-orange {
    background-color: orange !important;
}

.bg-red {
    background-color: red !important;
}

.bg-white {
    background-color: white !important;
}

.text-white {
    color: white !important;
}

.text-green {
    color: green !important;
}

.text-yellowgreen {
    color: yellowgreen !important;
}

.text-orange {
    color: orange !important;
}

.text-red {
    color: red !important;
}

.full-width {
    width: 100% !important;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* --- End of config.css ---*/

