/* LOAD FONT */
@import 'https://fonts.googleapis.com/css?family=Pacifico|Roboto+Slab|Roboto:300,400,500,700';


/* Increased Specificity */
@media (max-width: 768px) {
    #questionnaire-button:hover {
        background-color: #0d6efd !important;
    }
}

.blurry-background {
    backdrop-filter: blur(10px) !important;
}

/**** Weight check in dialog ****/

.weight-checkin-btn {
    min-width: 140px;
    height: 42px;
    padding: 6px 16px;
    background-color: #f8f9fa !important;
    border: 1px solid #dee2e6 !important;
    color: #6c757d !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.weight-checkin-btn.mud-button-filled.mud-button-filled-success {
    background-color: #4caf50 !important;
    border-color: #43a047 !important;
    color: white !important;
}

.weight-checkin-btn:not(:disabled):hover {
    background-color: #e9ecef !important;
    border-color: #ced4da !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.12);
}

.weight-checkin-btn.mud-button-filled-success:hover {
    background-color: #43a047 !important;
}

.weight-checkin-container {
    margin-left: 16px;
}

.mud-tooltip {
    font-size: 12px;
}

.weight-modal-close {
    position: absolute;
    right: 15px;
    top: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 4px 8px;
    z-index: 1060;
    transition: color 0.2s;
    line-height: 1;
}

.weight-modal-close:hover {
    color: #666;
}

@media (max-width: 576px) {
    .d-flex.align-items-center.justify-content-center {
        flex-direction: column;
        width: 100%;
    }

    .MudIconButton {
        position: absolute;
    }

    .MudIconButton:first-child {
        left: 0;
    }

    .MudIconButton:last-of-type {
        right: 0;
    }

    .flex-grow-1 {
        width: 100% !important;
        max-width: none !important;
        padding: 0 40px;
    }

    .weight-checkin-container {
        width: 100%;
        margin-left: 0;
        margin-top: 8px;
        display: flex;
        justify-content: center;
    }

    .weight-checkin-btn {
        min-width: 140px;
        padding: 6px 16px;
        font-size: 11px;
        letter-spacing: 0.25px;
    }
}
/*************Dieter Profile accordion**************************/
.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #0d6efd;
}

.accordion-button:focus {
    box-shadow: none;
}

.material-symbols-outlined {
    font-size: 1rem;
}

.delete-profile-link {
    display: inline-block;
    margin-top: 20px;
    color: #6c757d; /* A subtle gray color */
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s;
}

.delete-profile-link:hover {
    color: #dc3545; /* Red color on hover for emphasis */
}






/******** Alert Dialog **************/




.prompt-content {
    background-color: #f0f7ff;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 16px;
}



.alert-message {
    color: #4a4a4a;
    line-height: 1.5;
}



.prompt-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.btn-signup, .btn-login {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-signup {
    background: linear-gradient(to bottom, #ff9520, #ff8c00);
    color: white;
    border: none;
}

.btn-login {
    background: white;
    color: #ff8c00;
    border: 1px solid #ff8c00;
}

.btn-signup:hover {
    background: linear-gradient(to bottom, #ff8c00, #e67e00);
    transform: translateY(-1px);
}

.btn-login:hover {
    background: #fff5e6;
    transform: translateY(-1px);
}

.prompt-close {
    position: absolute;
    right: 16px;
    top: 16px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.prompt-close:hover {
    background: #f5f5f5;
    color: #666;
}

@media (max-width: 480px) {
    .prompt-dialog {
        width: 95%;
        margin: 1rem;
        padding: 1rem;
    }

    .alert-title {
        font-size: 1.1rem;
    }

    .alert-message {
        font-size: 0.9rem;
    }
}




/***** Alert Component CSS **************/

.custom-alert {
    position: relative; /* Ensure positioning context */
    z-index: 1;
    border: 1px solid #cce5ff;
    background-color: #e6f3ff; /* Light blue background */
    color: #004085; /* Darker blue text */
    animation: slideInFromTop 0.3s ease-out;
    padding: 24px;
    margin: 24px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.05);
    max-width: 100%; /* Ensure it doesn't exceed container */
    width: 100%; /* Responsive width */
    margin-left: auto;
    margin-right: auto;
}


/* Scoped alert header */
.custom-alert .alert-header {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Distribute space between items */
    font-size: 1rem;
    font-weight: bold;
    color: #004085;
    position: relative; /* For absolute positioning of close button */
}

/*
.custom-alert .alert-content {
    gap: 1rem;
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 16px;
}
*/


/* Alert Message */
.custom-alert .alert-message {
    flex-grow: 1;
    margin-right: 15px;
    color: #4a4a4a; /* Darker text for readability */
    line-height: 1.5;
    word-wrap: break-word; /* Allow long words to break */
}

/* Scoped alert icon */
.custom-alert .alert-icon {
    flex-shrink: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    margin-right: 15px;
}

/* Scoped close button */
.custom-alert .btn-close {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 24px !important;
    height: 24px !important;
    background: rgba(255, 255, 255, 0.3) !important;
    border: none !important;
    border-radius: 50% !important;
    font-size: 1.2rem !important;
    color: #999 !important;
    cursor: pointer !important;
    transition: color 0.2s ease, background-color 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    line-height: 1 !important;
    z-index: 1100 !important; /* Ensure it sits above other content */
}

.custom-alert .btn-close:hover {
    color: #666;
    background-color: rgba(255, 255, 255, 0.5);
}

.custom-alert .spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

/* Responsive styles */
@media (min-width: 1200px) {
    .custom-alert {
        width: 100%; /* Adjust as needed */
        max-width: 1200px; /* Match container's max-width */
    }
}

@media (max-width: 768px) {
    .custom-alert {
        width: 100%;
        padding: 20px;
    }

    .custom-alert .alert-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .custom-alert .alert-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .custom-alert .alert-message {
        margin-right: 0;
    }


}


@keyframes slideInFromTop {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


.targets-update {
    margin-top: 0.5rem;
}

.targets-update ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.targets-update ul li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    padding: 0.5rem;
    background: rgba(255,255,255,0.5);
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.targets-update ul li i {
    margin-right: 0.5rem;
    flex-shrink: 0;
}


.custom-alert i {
    flex-shrink: 0; /* Prevent the icon from resizing */
    font-size: 1.5rem; /* Adjust the icon size */
    margin-right: 10px; /* Add space between icon and text */
}

.custom-alert span {
    text-align: left; 
    flex-grow: 1; /* Allow the text to take up the remaining space */
}



.custom-alert .btn-close:hover {
    color: #666;
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


.custom-alert.alert-info {
    background-color: #f0f7ff;
    color: #014361;
    border-left: 4px solid #0091ff;
}

.custom-alert.alert-warning {
    background-color: #fff8ed;
    color: #663c00;
    border-left: 4px solid #ff9500;
}

.custom-alert.alert-success {
    background-color: #f0fdf4;
    color: #1e4620;
    border-left: 4px solid #34c759;
}

.custom-alert.alert-danger {
    background-color: #fef2f2;
    color: #5f2120;
    border-left: 4px solid #ff3b30;
}

.custom-alert.alert-saving {
    background-color: #f0f7ff;
    color: #014361;
    border-left: 4px solid #0091ff;
}


/* Spinner styles */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.spin {
    animation: spin 1s linear infinite;
}

.spinner-border {
    margin-right: 10px;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .custom-alert {
        width: 100%;
        padding: 16px;
    }

    .custom-alert .alert-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .custom-alert .alert-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .custom-alert .alert-message {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
}


/***************************************/
/****************Food Selection*********/

/*
.select2-container {
    width: 100% !important;
}
.serving-grid {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 10px;
    align-items: center;
}

.serving-item {
    display: contents;
}

.food-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 10px;
}

.form-select {
    border-color: #ced4da;
}
.form-select:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}




.btn-orange {
    background-color: #f08a12;
    border-color: #f08a12;
}
.btn-orange:hover {
    background-color: #d87b0f;
    border-color: #d87b0f;
}
*/

/**********************************/
.container {
    max-width: 100%; /* Ensure the container does not exceed the width of the viewport */
    overflow-x: hidden; /* Prevent horizontal overflow */
}

.collapse-card {
    width: 100%; /* Ensure the card fits within its container */
    overflow: hidden; /* Prevent overflow */
}

@media (max-width: 576px) {
    .collapse-card {
        margin: 0; /* Remove margin to fit within container */
    }
}


.narrow-column {
    width: 10%; /* Adjust this width as needed */
}

.equal-width-columns th, .equal-width-columns td {
    width: 20%; /* Ensure all columns have equal width */
    text-align: left;
    vertical-align: middle;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Ensure long words are broken to fit */
    overflow-wrap: break-word; /* Ensure long words are broken to fit */
}


@media (max-width: 576px) {
    .equal-width-columns th, .equal-width-columns td {
        white-space: normal; /* Allow text to wrap on small screens */
        word-break: break-word; /* Break words if necessary on small screens */
    }
    .d-none.d-sm-table-cell {
        display: none !important;
    }
    .d-none.d-sm-table-row {
        display: none !important;
    }
    .d-sm-none {
        display: inline !important;
    }
}

.collapse-card {
    width: 100%; /* Ensure the card fits within its container */
    overflow: hidden; /* Prevent overflow */
    max-height: 300px; /* Set a max height for the card */
    overflow-y: auto; /* Allow vertical scrolling */
}

@media (max-width: 576px) {
    .collapse-card {
        margin: 0; /* Remove margin to fit within container */
        max-height: 200px; /* Adjust max height for small screens */
    }
}

.table-responsive {
    overflow-x: auto; /* Ensure table responsiveness */
}
.parent-container {
    max-width: 100%; /* Ensure the parent container does not exceed the viewport width */
    overflow-x: hidden; /* Prevent horizontal overflow */
}

.steps-content {
    width: 100%; /* Ensure the steps content fits within its container */
    overflow: hidden; /* Prevent overflow */
}

@media (max-width: 576px) {
    .steps-content {
        margin: 0; /* Remove margin to fit within container */
    }
}
/*********************************/
/* Start Account Creation Prompt */
/*********************************/
/* Dialog specific styles */
.prompt-dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
}

.alert-dialog {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    margin: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title {
    color: #333;
    font-size: 1.25rem;
}

.btn-close:hover {
    opacity: 0.75;
}


.btn-close {
    transition: opacity 0.15s ease-in-out;
}



.alert-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #004085;
}
.alert-header h4 {
    margin: 0;
    font-size: 1.25rem;
    color: #333;
}

.alert-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
}

.alert-close:hover {
    color: #666;
}



.alert-message {
    flex-grow: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-right: 1.5rem;
}

.alert-footer {
    padding: 16px;
    display: flex;
    justify-content: center;
}

.alert-button {
    background-color: #ff8c00;
    color: white;
    border: none;
    padding: 8px 32px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.alert-button:hover {
    background-color: #e67e00;
}

@media (max-width: 480px) {
    .alert-dialog {
        width: 95%;
        margin: 10px;
        padding: 1rem;  /* Updated padding */
    }

    .alert-header h4 {
        font-size: 1.1rem;
    }

    .alert-message {
        font-size: 0.9rem;
    }
}

.prompt-dialog {
    background: white;
    width: 440px;
    border-radius: 8px; /* Slightly more rounded corners */
    padding: 24px; /* More breathing room */
    position: relative;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15); /* Softer shadow */
    animation: dialogFadeIn 0.2s ease-out; /* Smooth entrance */
}

@keyframes dialogFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.prompt-dialog .prompt-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    text-align: center;
}

.prompt-close {
    position: absolute;
    right: 16px;
    top: 16px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.prompt-close:hover {
    background: #f5f5f5;
    color: #666;
}

/* Embedded version styles */
.account-prompt {
    background: linear-gradient(to right, #f0f7ff, #f8fbff); /* Subtle gradient */
    padding: 24px;
    margin: 24px 0;
    border-radius: 8px;
    border: 1px solid rgba(0, 102, 204, 0.1);
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.05);
}

.account-prompt .prompt-buttons {
    justify-content: center;
}

/* Shared content styles */
.prompt-content {
    background: #f0f7ff;
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.prompt-text {
    font-size: 15px;
    line-height: 1.4;
    color: #333;
}

.prompt-text p {
    margin: 0 0 12px 0;
}

.prompt-text p:last-child {
    margin-bottom: 0;
}

.prompt-secondary {
    color: #0066cc !important;
}

/* Button styles */
.prompt-buttons {
    display: flex;
    gap: 12px;
    margin: 16px 0;
}

.btn-login, .btn-signup {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    min-width: 160px; /* More consistent width */
    gap: 12px;
}


.btn-login i, .btn-signup i {
    font-size: 16px;
}

.btn-login {
    background: white;
    color: #ff8c00;
    border: 1px solid #ff8c00;
}

.btn-login:hover {
    background: #fff5e6;
    transform: translateY(-1px);
}

.btn-signup {
    background: linear-gradient(to bottom, #ff9520, #ff8c00);
    box-shadow: 0 2px 4px rgba(255, 140, 0, 0.2);
}

.btn-signup:hover {
    background: linear-gradient(to bottom, #ff8c00, #e67e00);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(255, 140, 0, 0.3);
}


.btn-skip {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background: none;
    border: none;
    color: #666;
    text-decoration: underline;
    cursor: pointer;
    font-size: 14px;
    padding: 4px;
    text-align: center;
}

/* Hover states */
.btn-login:hover {
    background: #fff5e6;
}

.btn-signup:hover {
    background: #e67e00;
}

.btn-skip:hover {
    color: #333;
}

/* Responsive improvements */
@media (max-width: 480px) {
    .prompt-dialog {
        width: 90%;
        margin: 16px;
        padding: 16px;
    }

    .prompt-buttons {
        flex-direction: column;
    }

    .btn-login, .btn-signup {
        width: 100%;
        min-width: unset;

    }
}

/* END Account Creation Prompt */
/*********************************/
@media (max-width: 576px) {
    .container-fluid {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

.nutrient-target {
    justify-content: space-between;
}
@media (min-width: 768px) { /* md breakpoint */
    .nutrient-target {
        justify-content: flex-start;
    }
    .info-icon {
        margin-left: 0.25rem;
        margin-top: 0; /* Reset margin-top for larger screens */
    }
}
.info-icon {
    margin-top: 0.5rem; /* Add margin-top for smaller screens */
}


.ratio video { /* If your video is directly inside the .ratio container */
    border-radius: 0.3rem; /* Adjust the value for the desired rounding */
}

.video-container { /* If you have a container around the video */
    border-radius: 0.3rem;
}


.navbar.bg-orange {
    background-color: #f08a12; /* Specific to your navbar */
}

.text-muted.small {
    font-size: 0.8rem; /* Smaller font size for explanations */
}

.form-control[disabled] {
    /* Styles for disabled input fields */
    background-color: #e9ecef;
    opacity: 0.75;
}

.clickable-text {
    cursor: pointer;
    transition: color 0.3s ease;
}

.clickable-text:hover {
    color: #007bff; /* Bootstrap primary color, or choose your own */
    text-decoration: underline;
}


.nav-link {
    color: #fff !important; /* White text */
    margin-right: 10px;
}

.nav-link:hover {
    color: #7a7c6a !important;
}

/* Optional: Add a shadow or other effects on hover to enhance the clickability */
.clickable-text:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/*blazorise steps override*/
.step-container {
    width: 7rem !important;
    max-width: 7rem !important;
}


.steps {
    overflow-x: visible !important;
    --bs-gutter-x: 0 !important;
}

.step-container:hover {
    cursor: pointer;
}

.step-circle::before {
    width: calc(7rem + 1rem - 1.5rem) !important;
}

/*end of blazorise steps override*/

.my-logo {
    width: 400px; /* Adjust to your preferred width */
    height: 400px; /* Adjust to your preferred height */
}

/* Hero Headline Styles */
.hero-headline-container {
    margin: 0 0 1rem 0;
    text-align: center;
}

.hero-line-1 {
    font-size: 1.6rem; /* 60-70% of original 2.5rem */
    font-weight: 500; /* Slightly bolder to balance with line 2 */
    color: #2d3748; /* Dark gray/black */
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 0.2rem;
}

.hero-line-2 {
    font-size: 1.9rem; /* 70-80% of original 2.5rem, slightly larger than line 1 */
    font-weight: 800; /* Bold weight */
    color: #f08a12; /* Orange brand color */
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-accent {
    color: #f08a12;
    display: inline;
}

/* Site Logo Styles */
.site-logo {
    width: 200px;
    height: auto;
}

.beta-badge {
    font-size: 1.2rem;
    font-weight: 400;
    color: #6b7280;
    opacity: 0.8;
}

/* Subheadline Styles */
.subheadline {
    font-size: 1.3rem; /* Increased by ~2px for better readability */
    font-weight: 300;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

/* Responsive Styles for Hero Section */
@media (max-width: 992px) {
    .hero-line-1 {
        font-size: 1.4rem;
    }
    
    .hero-line-2 {
        font-size: 1.7rem;
    }
    
    .site-logo {
        width: 180px;
    }
    
    .subheadline {
        font-size: 1.2rem; /* Increased proportionally */
    }
}

@media (max-width: 768px) {
    .hero-line-1 {
        font-size: 1.2rem;
    }
    
    .hero-line-2 {
        font-size: 1.5rem;
    }
    
    .site-logo {
        width: 160px;
    }
    
    .beta-badge {
        font-size: 1rem;
    }
    
    .subheadline {
        font-size: 1.15rem; /* Increased proportionally */
    }
}

@media (max-width: 576px) {
    .hero-line-1 {
        font-size: 1.1rem;
    }
    
    .hero-line-2 {
        font-size: 1.3rem;
    }
    
    .site-logo {
        width: 140px;
    }
    
    .beta-badge {
        font-size: 0.9rem;
    }
    
    .subheadline {
        font-size: 1.05rem; /* Increased proportionally */
        line-height: 1.5;
    }
}

::placeholder {
    color: #7a7c6a !important; /* Override browser form placeholder color */
    font-weight: 100 !important;
}






/*body {
	font-family: 'Raleway', sans-serif;
}*/

body {
    font-size: 14px;
    color: #263E67;
    font-weight: 300;
}

header {
    color: #263E67;
    font-weight: 300;
}

.container-width {
    max-width: 1170px;
    margin: 0 auto;
}

img {
    max-width: 100%;
}

.basic-grid {
    font-family: inherit;
}

.min-max-label {
    width: 120px; /* Adjust the width as desired */
}

.transparent-btn {
    background-color: rgba(0, 123, 255, 0.1) !important;

}

.transparent-btn:hover {
    background-color: #0d6efd !important;
}


/* Primary font */
h1, h2, h3, h4 {
    font-family: 'Raleway', sans-serif;
    color: #c79550;
    font-weight: 700; /* Use bold for headers */
}

h5, h6 {
    font-family: 'Raleway', sans-serif;
    color:  #263E67;
    font-weight: 700; /* Use bold for headers */
}


/******Profile Dashboard*******/

/* Container */
.text-orange {
    color: #f08a12;
}
.bg-orange {
    background-color: #f08a12;
}
.table th, .table td {
    white-space: nowrap;
}
@media (max-width: 767.98px) {
    .table th, .table td {
        font-size: 0.875rem;
    }
    .navigationFont {
        margin-bottom: 0.5rem;
    }
}


.container-fluid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Meal Planner Header */
.meal-planner-header {
    background-color: #FDF6E3;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.meal-planner-title {
    color: #D97706;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.meal-planner-steps {
    list-style-type: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.meal-planner-steps li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #4B5563;
}

.meal-planner-steps li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    background-color: #D97706;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    font-size: 14px;
    font-weight: bold;
}

/* Meal Sections */
.meal-section {
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.meal-header {
    background-color: #F3F4F6;
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: #374151;
    transition: background-color 0.2s ease;

    &:hover {
        background-color: #E5E7EB;
    }
}


.meal-name {
    flex: 0 0 30%;
    font-weight: bold;
    color: #1F2937;
}

.meal-totals {
    display: flex;
    flex: 1;
    justify-content: space-between;
    align-items: center;

    .nutrient-total {
        flex: 1;
        text-align: right;
        padding: 0 5px;
    }
}




.meal-total-spacer {
    flex: 0 0 20%;
}

.toggle-icon {
    flex: 0 0 auto;
}




.meal-content {
    padding: 20px;
}

/* Tables */
.meal-table, .daily-summary-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 15px;
    table-layout: fixed;
}



/*Align meal totals with daily summary table */
.meal-totals .nutrient-total,
.daily-summary-table th,
.daily-summary-table td {
    flex: 1;
    text-align: right;
    padding: 0 5px;
}

.meal-totals .nutrient-total:first-child,
.daily-summary-table th:nth-child(3),
.daily-summary-table td:nth-child(3) {
    padding-left: 0;
}

.meal-totals .nutrient-total:last-child,
.daily-summary-table th:last-child,
.daily-summary-table td:last-child {
    padding-right: 0;
}
/* Allow text to wrap in table cells */

.meal-table th, .meal-table td,
.daily-summary-table th, .daily-summary-table td {
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
    overflow-wrap: break-word; /* Support for different browsers */
}


.meal-table th, .daily-summary-table th {
    font-weight: bold;
    color: #4B5563;
    background-color: #F9FAFB;
}

/* Column widths */
.meal-table th,
.meal-table td,
.daily-summary-table th,
.daily-summary-table td {
    width: 16%; /* Adjusted default width */
    text-align: right;
}

.meal-table th:first-child,
.meal-table td:first-child,
.daily-summary-table th:first-child,
.daily-summary-table td:first-child {
    width:30%; /* Narrower first column for food names */
    text-align: left;
}

.meal-table th:nth-child(2),
.meal-table td:nth-child(2),
.daily-summary-table th:nth-child(2),
.daily-summary-table td:nth-child(2) {
    width: 20%; /* Narrower 'Serving' column */
    text-align: left;
}


/* Ensure all elements use border-box for consistent sizing */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Right-align numeric columns in both tables starting from the 3rd column */
.meal-table th:nth-child(n+3),
.meal-table td:nth-child(n+3),
.daily-summary-table th:nth-child(n+3),
.daily-summary-table td:nth-child(n+3) {
    text-align: right;
}

/* Style for the empty state message */
.empty-state {
    text-align: center;
    padding: 20px;
    color: #6B7280;
    font-style: italic;
}

/* Style for serving info on small screens */
.serving-info {
    display: none; /* Hidden by default */
    margin-top: 8px;
    /*    display: flex;*/
    align-items: center;
    gap: 4px;
}


.serving-label {
    font-weight: bold;
}

.serving-column {
    width: 150px; /* Increased width to accommodate grams */
}
.serving-input {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 3px;

    input {
        width: 60px;
        border: 1px solid #D1D5DB;
        border-radius: 4px;
        padding: 4px;

        &:focus {
            outline: none;
            border-color: #3B82F6;
            box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
        }
    }
}
.serving-grams {
    font-size: 0.85em;
    color: #6B7280;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Hide spacer column in Daily Summary on small screens */
@media (max-width: 576px) {
    .daily-summary {
        overflow-x: hidden;
        width: 100%;
        padding: 0;
    }

    .daily-summary-table {
        width: 100%;
        table-layout: fixed;
        margin: 0;
    }

    /* Force table to take up exactly 100% width */
    .daily-summary-table tbody,
    .daily-summary-table tr {
        width: 100%;
        display: table;
        table-layout: fixed;
    }

    .daily-summary-table th,
    .daily-summary-table td {
        font-size: 11px;
        padding: 4px 2px;
        word-break: break-word;
        white-space: normal;
        vertical-align: top;
    }

    /* Adjust column widths */
    .daily-summary-table th:first-child,
    .daily-summary-table td:first-child {
        width: 35%;
    }


    .daily-summary-table th:not(:first-child),
    .daily-summary-table td:not(:first-child) {
        width: 16.25%;
        text-align: center;
    }

    td .nutrient-total {
        display: grid !important;
        grid-template-rows: auto auto !important;
        justify-items: center !important;
        gap: 2px !important;
        height: 100% !important;
    }

    td .nutrient-total > * {
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Remove text truncation */
    .daily-summary-table .nutrient-total,
    .daily-summary-table td {
        overflow: visible;
        text-overflow: clip;
    }

    .daily-summary-table td {
        line-height: 1.2;
    }

    .nutrient-total {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 4px !important;
        text-align: center !important;
    }

    .nutrient-total > span {
        display: block !important;
        width: 100% !important;
    }

    /* Hide the serving column */
    table.meal-table .serving-column,
    table.daily-summary-table .daily-summary-spacer {
        display: none;
    }

    /* Show serving info beneath course name */
    .serving-info {
        display: flex;
    }

    .serving-info label.serving-label {
        display: none;
    }

    /* Table adjustments */
    .meal-table th, .meal-table td {
        padding: 6px 4px;
        font-size: 13px;
        white-space: nowrap;
    }

    /* Abbreviate headers */
    .meal-table th:nth-child(3),
    .daily-summary-table th:nth-child(3) { content: "Cal"; }
    .meal-table th:nth-child(4),
    .daily-summary-table th:nth-child(4) { content: "P"; }
    .meal-table th:nth-child(5),
    .daily-summary-table th:nth-child(5) { content: "C"; }
    .meal-table th:nth-child(6),
    .daily-summary-table th:nth-child(6) { content: "F"; }

    .daily-summary-table tr:nth-child(3) td:not(:first-child) {
        font-size: 10px;
        white-space: pre-line; /* This allows breaking at \n */
        word-break: break-word;
        line-height: 1.3;
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .daily-summary-table tr:nth-child(3) .btn-link {
        display: block;
        margin: 2px auto 0;
    }

    .meal-table input[type="number"] {
        width: 45px;
        font-size: 13px;
        padding: 2px;
    }

    .add-foods-button {
        font-size: 14px;
        padding: 8px 16px;
    }

    .btn-link {
        padding: 0;
        margin-top: 2px;
    }

    .bi-info-circle {
        font-size: 11px;
    }
}

/* Ensure tables are responsive */




/* Button Styles */
.add-foods-button {
    background-color: #3B82F6;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.add-foods-button:hover {
    background-color: #2563EB;
}

/* Daily Summary Section Styles */
.daily-summary {
    background-color: #F3F4F6;
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
}

.daily-summary-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #374151;
}

/* Nutrient Total Styles */
.nutrient-total {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.nutrient-total-value {
    font-weight: bold;
    margin-right: 6px;
}

.nutrient-total-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.nutrient-total-icon.green { background-color: #10B981; }
.nutrient-total-icon.yellow { background-color: #FBBF24; }
.nutrient-total-icon.red { background-color: #EF4444; }

/* Ensure cells occupy space even if empty */
.daily-summary-table th,
.daily-summary-table td {
    min-width: 50px;
    padding: 12px 8px;
    border-bottom: 1px solid #E5E7EB;
    /*    text-overflow: ellipsis;
        overflow: hidden;*/
    white-space: nowrap;
}

/* Input Styles for Serving Amounts */
.meal-table input[type="number"] {
    width: 60px; /* Moved from inline styles */
    padding: 4px;
    border: 1px solid #D1D5DB;
    border-radius: 4px;
    font-size: 14px;
}

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

    .serving-column {
        display: none;
    }
    .serving-info {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 8px;
    }
    .serving-info input {
        width: 60px;
    }
    .serving-info .serving-grams {
        width: 100%;
        margin-top: 2px;
    }

    .meal-name {
        flex: 0 0 100%;
        margin-bottom: 10px;
    }

    .meal-totals {
        flex: 0 0 100%;
        justify-content: space-between;
        padding-right: 0;
    }

    .meal-total-spacer {
        display: none;
    }

    .toggle-icon {
        position: absolute;
        right: 15px;
        top: 15px;
    }

    .meal-planner-title {
        font-size: 20px;
    }

    .meal-planner-steps li {
        font-size: 14px;
    }

    .meal-header {
        font-size: 16px;
        padding: 12px;
    }

    .meal-content {
        padding: 15px;
    }

    .meal-table, .daily-summary-table {
        font-size: 12px;
    }

    .meal-table th, .meal-table td,
    .daily-summary-table th, .daily-summary-table td {
        padding: 8px 4px;
    }

    /* Adjust column widths for smaller screens */
    .meal-table col:first-child,
    .meal-table col:nth-child(2),
    .daily-summary-table col:first-child,
    .daily-summary-table col:nth-child(2) {
        width: 25%;
    }

    .meal-table col:nth-child(2),
    .daily-summary-table col:nth-child(2) {
        width: 18%;
    }

    .add-foods-button {
        font-size: 14px;
        padding: 8px 16px;
    }

    .daily-summary-title {
        font-size: 18px;
    }

    .nutrient-total-value {
        font-size: 12px;
    }

    .nutrient-total-icon {
        width: 10px;
        height: 10px;
    }

    .meal-table input[type="number"] {
        width: 50px;
        font-size: 12px;
    }
}

/* Shared Table Styles */
.aligned-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed; /* Ensures fixed layout */
}

.aligned-table th,
.aligned-table td {
    padding: 12px 8px;
    border-bottom: 1px solid #E5E7EB;
    /*    text-overflow: ellipsis;
        overflow: hidden;*/
    text-align: left; /* Default alignment */
}

.aligned-table th {
    background-color: #f9fafb;
    font-weight: bold;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #374151;
}

/* Align numeric data to the right */
.aligned-table td:nth-child(n+3),
.aligned-table th:nth-child(n+3) {
    text-align: right;
}





/* Additional styles for better alignment and spacing */
.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 15px;
}

.mt-4 {
    margin-top: 20px;
}

.bg-white {
    background-color: white;
}

.border {
    border: 1px solid #E5E7EB;
}

.rounded-lg {
    border-radius: 8px;
}

.p-4 {
    padding: 16px;
}

.text-xl {
    font-size: 20px;
}

.font-bold {
    font-weight: bold;
}

.mb-2 {
    margin-bottom: 8px;
}

.py-2 {
    padding-top: 8px;
    padding-bottom: 8px;
}

.px-4 {
    padding-left: 16px;
    padding-right: 16px;
}

.rounded {
    border-radius: 4px;
}

.bg-gray-300 {
    background-color: #D1D5DB;
}

.hover\:bg-gray-400:hover {
    background-color: #9CA3AF;
}

.text-gray-800 {
    color: #1F2937;
}

/* Alert styles */



.bi {
    display: inline-block;
    vertical-align: -0.125em;
}

.me-2 {
    margin-right: 8px;
}

.d-none {
    display: none;
}

/***************************/


/* Secondary font */
body, p, li, div {
    font-family: 'Cabin', sans-serif;
    font-weight: 400; /* Use normal weight for body text */
    line-height: 1.5; /* Adjust line-height for readability */
}

/* Accent font */
.button, .cta {
    font-family: 'Bitter', sans-serif;
    font-weight: 700; /* Use bold for call-to-action elements */
}

.subtitle {
    font-family: 'Raleway', sans-serif;
    color: #74aacb;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem; /* Adjusted spacing for better visual appeal */
}

.navigationFont {
    color: #7a7c6a;
}



.subtitle2 {
    font-family: 'Raleway', sans-serif;
    color: #7a7c6a; /* Darkened for better readability */
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.5rem; /* Adjusted spacing for better visual appeal */
}


.macroLabel {
    font-family: 'Bitter', sans-serif;
    color: #7a7c6a;
    font-size: 1.5rem;
    font-weight: 500; /* Use bold for headers */
    /*	padding-top: 6px!important;*/
    /*	margin-bottom:0!important;*/
}

.mealMacroAbstract {
    font-weight: 100 !important;
    font-size: 0.8rem;
    font-family: 'Cabin', sans-serif;
}

.ShowMoreResultsBtn {
    color: #263E67 !important;
    background-color: #c79550 !important;
}


/*Desktop font sizes*/
body {
    font-size: 1.8rem; /* Body font size of around 18px */
}

h1 {
    font-size: 3rem; /* Headings size of around 35px */
}

h3, h4 {
    font-size: 2.2rem; /* Subheadings size of around 30px */
}

input {
    font-size: 1.8rem; /* Input fields should match the body text size */
}




/* 
==============================
START COLOR SCEEMA 
==============================
*/
/* -> START #f7f3f0 */
body,
.widget_masakmak_about_me .long-desc,
.widget_masakmak_about_me .long-desc:before {
    background-color: #f7f3f0;
}

.like-counter-circle,
.inline-recipe-info .recipe-info-content > span,
.recipe-content,
.recipe-content .recipe-section,
.recipe-step li,
.tagcloud a,
.subscribe-content .subscribe-icon,
.comment-form-area,
ul.archive .counter-post,
ul.archive .additional-information,
.widget-social-media a,
.border-style-2,
.media
.border-style.border-style-2 {
    border-color: #f7f3f0;
}

/* -> END #f7f3f0 */

ul.archive .anti-counter-post {
    border-color: #9f3a38;
}

/* -> START #434949 */
.top-header-bar,
.navbar-toggle-menu.open,
.header-light .navbar-toggle-menu.open,
.header-image .navbar-toggle-menu.open,
.option-dropdown {
    background-color: #f08a12;
}

.btn-light-theme,
.entry-title,
.entry-title a,
.header-light .btn-dark,
.recipe-content .recipe-title,
.comment-body .comment-author,
.tab-widget ul.nav-tabs li.active a {
    color: #fcfcfc;
}

/* -> END #434949 */

/* -> START #7cc4a5 */
.btn-default-theme,
.nav > li > a:focus, .nav > li > a.btn-default-theme:hover,
.btn-default-theme:hover,
.cat-links.block a,
.featured-post .owl-carousel .owl-prev,
.featured-post .owl-carousel .owl-next,
.owl-dots .owl-dot.active,
.widget-title:after,
.widget .post-list .media.big-post .media-body .like-counter-circle,
.navigation.pagination .nav-links span.current,
.navbar-nav > li.dropdown > .dropdown-menu,
.navbar-left .navbar-nav > li > a:before,
.recipe-step li.done:before,
.post-list .post.image-overlay:hover .overlay:after,
.image-link .image-link-item:hover:before,
.widget_masakmak_about_me.style-3:before,
.widget-social-media a:hover,
.pagination > li > a.current, .pagination > li > span.current,
.pagination > li > a.current:hover, .pagination > li > span.current:hover {
    background-color: #3b5998;
}

.recipe-step li:before,
.tagcloud a:hover,
.widget-social-media a:hover,
.tab-widget ul.nav-tabs li.active a,
.entry-content ul.square li:before {
    border-color: #7cc4a5;
}

a,
a:hover,
.navbar-nav > li.active > a,
.widget_masakmak_about_me .name,
.cat-links a,
.like-counter-circle .like-count,
.navigation.pagination .nav-links a:hover,
.nav > li > a:not(.btn):focus, .nav > li:hover > a:not(.btn),
.header-image .popular-search small,
.inline-recipe-info .recipe-info-content > span .fa,
.recipe-content .recipe-subtitle,
.subscribe-content .subscribe-icon,
.subscribe-content .media-heading,
.text-default-color,
.widget ul li a:hover,
ul.archive .counter-post,
.widget ul.twitter-widget li a,
ul.twitter-widget li:before,
ul.instagram-gallery li.follow-button a,
.page-header .page-title,
.widget .comment-list ul li a,
.single-post-content .entry-content a,
ul.archive .additional-information,
.pagination > li > a:hover, .pagination > li > span:hover {
    color: #7cc4a5;
}

.green-link {
    color: #7cc4a5 !important;
}

.green-link:hover {
    text-decoration: underline !important;
}

/* -> END #7cc4a5 */
/* -> START #aeb3b9 */
.owl-dots .owl-dot {
    background-color: #aeb3b9;
}

.blue-button {
    color: #74aacb !important;
    font-weight: 400;
}

.navbar-nav > li > a,
.navbar-toggle,
.popular-search small,
.site-description,
.cat-links,
.like-counter-circle small,
.footer-text-menu,
.footer-text-menu .footer-menu a,
.featured-post .owl-carousel.slideshow .owl-prev,
.featured-post .owl-carousel.slideshow .owl-next,
.recipe-step li.done,
.post-list .post.image-overlay:hover .caption .entry-header .post-meta,
.widget .form-search .btn,
.widget-social-media a,
.widget-recent-comment .comment-item,
ul.twitter-widget li .tweet-date,
.tab-widget ul.nav-tabs li a,
.page-header .page-title .sub-title,
.has-feedback .form-control-feedback,
.image .caption {
    color: #f08a12;
}

/* -> END #aeb3b9 */

/* -> START #363a3a */
.btn-dark {
    background-color: #363a3a;
}

/* -> END #363a3a */

/* -> START #eeeee7 */
.btn-light-theme,
.header-light .btn-dark,
.header-light .btn-dark:hover,
.header-light .btn-dark:focus {
    background-color: #eeeee7;
}

#header,
.form-control,
.widget .form-search,
.entry-content ul.square li li:before {
    border-color: #eeeae7;
}

/* -> END #eeeee7 */

/* -> START #99999A */
.widget_masakmak_about_me .long-desc,
.widget_masakmak_about_me .short-desc,
.tagcloud a,
.social-media a,
.post-meta,
.post-meta a,
.navigation.pagination .nav-links span,
.navigation.pagination .nav-links a,
.pagination > li > a, .pagination > li > span,
.author-box .author-long-desc,
.comment-body .comment-text,
.page-header .page-description,
.text-mute,
.subscribe-content .subscribe-title p,
.inline-recipe-info .recipe-info-content > span {
    color: #99999a;
}

/* -> END #99999A */

/* -> START #676c72   MACRODA ARKADAKI RENK*/
.single-post-content .entry-content,
.single-post-content .recipe-content,
body,
.next-prev-post .entry-title,
.post-list .post.image-overlay:hover .caption .entry-header .entry-title a,
.widget ul li a,
.widget-recent-comment .comment-item cite,
.author-box .media-heading .recipe-counter {
    color: #676c72;
}

/* -> END #676c72 */

/* -> START #fbf9f8 */
.light-background,
.form-control,
.comment-body .comment-text,
.comment-body .comment-text:before,
.widget .form-search {
    background-color: rgb(245, 245, 245);
}

/* -> END #fbf9f8 */
/* 
==============================
END COLOR SCEEMA 
==============================
*/

/* 
==============================
START FONT FAMILY
==============================
*/
body,
ul.twitter-widget li .tweet-date,
.page-header .page-title .sub-title,
.search-title h5,
.notfound-title {
    font-family: 'Bitter', sans-serif;
}

.site-title,
.widget_masakmak_about_me .name {
    font-family: 'Cabin', cursive;
}

.site-description,
.popular-search,
.entry-title,
.widget-title,
.section-title,
.like-counter-circle,
.navbar-nav > li.dropdown > .dropdown-menu,
.search-overlay .search-title,
h1, h2, h3, h4, h5,
.comment-body .comment-author,
ul.twitter-widget li,
.page-header .page-description {
    font-family: 'Bitter', sans-serif;
}

/* 
==============================
END FONT FAMILY
==============================
*/


/* 
==============================
START FORM & BUTTON
==============================
*/
/* --> BUTTON */
/*.btn{
	min-height: 40px;
    padding: 9px 20px;
    border-radius: 3px;
}
.btn-group-sm>.btn, .btn-sm {
	padding: 7px 15px;
    !*min-height: auto;*!
}



.btn .fa.pull-left{ margin-top: 3px; }
.btn-default-theme{
	color: #ffffff !important;
	border-color: transparent;
}
.btn-dark{
	border-color: transparent;
	color: #ffffff;
}
.btn-border-bottom{
	border-bottom: 3px solid rgba(0, 0, 0, 0.2);
}*/
/*.btn-md{
	min-height: 50px;
	padding: 10px 19px;
	line-height: 25px;
}*/
.btn-facebook, .btn-facebook:hover, .btn-facebook:focus {
    background-color: #4863ae;
    color: #ffffff;
}

.btn-google, .btn-google:hover, .btn-google:focus {
    background-color: #dd4b39;
    color: #ffffff;
}

/* --> FORM */



/* 
==============================
END FORM & BUTTON
==============================
*/

/* 
==============================
START COMPONENT
==============================
*/
/* -> START MARGIN */
/* --> MARGIN TOP */


/* -> CLEARFIX */
.subscribe-content:after,
ul.archive li:after,
.widget-social-media:after,
ul.instagram-gallery:after,
.entry-content:after {
    content: " ";
    display: block;
    clear: both;
}

/* -> OVERLAY */
.overlay {
    position: relative;
}

.overlay:after {
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

/* -> ANIMATE */
a, .post-image a .recipe-info,
.post-list .post.image-overlay .caption .entry-header,
.overlay:after,
.image-link .image-link-item:before,
.fix-header-menu {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

/* -> TEXT OVERFLOW */
.widget-title,
.image-link-text,
ul.archive a,
ul.instagram-gallery li.follow-button .follow-button-content,
.tab-widget ul.nav-tabs li a {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: normal;
    display: block;
}

/* -> CATEGORY */
.cat-links a {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
}

.cat-links.block a {
    color: #ffffff;
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    padding: 3px 10px;
    text-decoration: none;
}

.cat-links.block a:hover {
    color: #ffffff;
}

/* TAGS */
.tagcloud a {
    display: inline-block;
    border-width: 4px;
    border-style: solid;
    height: 32px;
    padding: 2px 10px;
    margin-right: 5px;
    margin-bottom: 8px;
    text-decoration: none;
}

/* -> POST META */
.post-meta {
    font-size: 12px;
    font-weight: 500;
}

.post-meta:last-child {
    margin-bottom: 0;
}

.post-meta .post-like .fa {
    color: #e15554;
}

.post-meta .share-button a {
    font-size: 14px;
    display: inline-block;
    margin-left: 10px;
}

/* -> PAGINATION */
.pagination-wrap {
    margin: 30px 0;
}

.navigation.pagination,
.pagination {
    text-transform: uppercase;
    border: 5px solid rgba(255, 255, 255, 0.4);
    display: table;
    margin: 0 auto;
    font-size: 12px;
    border-radius: 0;
    box-shadow: none;
}

.navigation.pagination .nav-links {
    background-color: #ffffff;
}

.navigation.pagination .nav-links span,
.navigation.pagination .nav-links a,
.pagination > li > a, .pagination > li > span {
    display: block;
    float: left;
    padding: 15px 15px;
    min-width: 50px;
    min-height: 47px;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 0 !important;
    text-transform: uppercase;
    margin: 0;
}

.pagination > li > a:hover, .pagination > li > span:hover {
    background-color: #ffffff;
}

.navigation.pagination .nav-links span.current,
.pagination > li > a.current, .pagination > li > span.current,
.pagination > li > a.current:hover, .pagination > li > span.current:hover {
    color: #ffffff;
}

/* -> SOSMED LINK */
.sosmed-link a.facebook, .sosmed-link a.facebook:hover {
    background-color: #3b5998;
}

.sosmed-link a.twitter, .sosmed-link a.twitter:hover {
    background-color: #55acee;
}

.sosmed-link a.pinterest, .sosmed-link a.pinterest:hover {
    background-color: #cb2027;
}

.sosmed-link a.google-plus, .sosmed-link a.google-plus:hover {
    background-color: #DD4B39;
}

.sosmed-link a.instagram, .sosmed-link a.instagram:hover {
    background-color: #517FA4;
}

.sosmed-link a.vimeo, .sosmed-link a.vimeo:hover {
    background-color: #aad450;
}

.sosmed-link a.vk, .sosmed-link a.vk:hover {
    background-color: #507299;
}

.sosmed-link a.vine, .sosmed-link a.vine:hover {
    background-color: #00BF8F;
}

.sosmed-link a.linkedin, .sosmed-link a.linkedin:hover {
    background-color: #007BB6;
}

.sosmed-link a.tumblr, .sosmed-link a.tumblr:hover {
    background-color: #32506D;
}

.sosmed-link a.dribbble, .sosmed-link a.dribbble:hover {
    background-color: #EA4C89;
}

.sosmed-link a.youtube, .sosmed-link a.youtube:hover {
    background-color: #BB0000;
}

.sosmed-link a.soundcloud, .sosmed-link a.soundcloud:hover {
    background-color: #FF4711;
}

/* -> RULER */
.ruler {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: block;
}

.border-style {
    border-color: rgba(255, 255, 255, 0.4);
}

.border-style,
.border-style-2 {
    border-width: 5px;
    border-style: solid;
}

.border-style.img-cirlce {
    border-radius: 50%;
}



/* --> RELATED POST */
.widget.related-post {
    padding-bottom: 0;
}

.widget.related-post .widget-title {
    margin-bottom: 30px;
}


/* --> PAGE HEADER */
.page-header {
    background-color: #ffffff;
    text-align: center;
    padding: 30px 22px;
    margin: 0;
    border: none;
}

.page-header .page-title {
    font-size: 20px;
    margin: 0;
}

.page-header .page-title .sub-title {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
}

.page-header .page-title .ruler {
    max-width: 100px;
    margin-left: auto;
    margin-right: auto;
}

.page-header .page-description {
    margin-top: 20px;
    font-size: 14px;
}

/* --> DUPLICATE CONTENT */

/* 
==============================
END COMPONENT
==============================
*/

/* 
==============================
START HEADER 
==============================
*/
/*#header.has-search-form{
	border-bottom-width: 5px;
	border-bottom-style: solid;
	background-color: #ffffff;
	margin-bottom: 30px;
}*/
/* -> START TOP BAR */

.fw-extra-light {
    font-weight: 20 !important;
    color: #7a7c6a;
}

.navbar {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
    margin: 0;
    border: none;
    min-height: 70px;
}

.navbar-toggle {
    font-size: 24px;
    padding: 5px 15px;
    float: left;
    margin-top: 12px;
}

.navbar .navbar-collapse {
    padding: 0;
}

.navbar-nav > li > a {
    padding: 25px 15px;
}

.navbar-nav > li.dropdown:hover > .dropdown-menu {
    display: block;
}

.navbar-nav > li.active > a {
}

.nav > li > a:not(.btn):focus, .nav > li > a:not(.btn):hover {
    background: none;
}

.navbar-left .navbar-nav > li > a:before {
    content: " ";
    display: block;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    top: -4px;
    left: 50%;
    margin-left: -4px;
    position: absolute;
    opacity: 0;
}

/* --> START TOP BAR LIGHT */
.header-light .top-header-bar {
    border-bottom: 1px solid #f2f2f2;
}

.header-light .top-header-bar,
.header-light .navbar-toggle-menu {
    background: #ffffff;
}

.header-light .navbar-nav.navbar-right > li > a:not(.btn) {
    border-left: 1px solid #f2f2f2;
}

/* --> HEADER BACKGROUND */
.header-image {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.header-image:before {
    background-color: #000000;
    opacity: 0.5;
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
}

.header-image > div {
    position: relative;
}

.header-image .top-header-bar,
.header-image .navbar-toggle-menu {
    background-color: transparent;
}

.header-image .top-header-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-image .navbar-nav.navbar-right > li > a:not(.btn) {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.header-image .popular-search a {
    color: #ffffff;
}

/* -> END TOP BAR */

/* -> START SITE INFO */
/*.site-info{
	text-align: center;
    padding: 40px 0;
}*/
.site-title {
    margin: 0;
    font-size: 60px;
}

.site-description {
    margin: 0;
    font-size: 18px;
}

/* -> END SITE INFO */

/* -> START HEADER SEARCH */
/*.header-search{
	margin-bottom: 70px;
}*/


/* -> END HEADER SEARCH */
/* 
==============================
END HEADER 
==============================
*/

/* 
==============================
START PAGE
==============================
*/


/* --> CONTACT */

/* -> END ABOUT ME WIDGET */

/* -> START WIDGET SEARCH */

/* -> END POST LIST WIDGET */

/* -> END IMAGE LINK */



/* -> END WIDGET SOCIAL MEDIA */







/* 
==============================
START FOOTER
==============================
*/
#footer {
    background-color: #ffffff;
    margin-top: 30px;
}

#footer .footer-logo {
    padding: 60px 0;
}

#footer .footer-logo img {
    display: inline-block;
}

.footer-text-menu {
    font-size: 12px;
    padding: 30px 15px 30px;
    border-top: 1px solid #f2f2f2;
}

.footer-text-menu .footer-menu .list-inline {
    margin-bottom: 0;
}

/* -> BACK TO TOP */
.back-to-top {
    position: fixed;
    bottom: 130px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: block;
    background-color: rgba(0, 0, 0, 0.1);
    color: #ffffff;
    text-align: center;
    line-height: 50px;
    z-index: 1000;
}

.footer-sosmed {
    margin-bottom: 60px;
}

.footer-sosmed a {
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background-color: #999999;
    border-radius: 50%;
    color: #ffffff;
    margin: 0 2px 6px;;
}

.back-to-top:hover,
.back-to-top:focus {
    color: #ffffff;
}

.search-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: none;
}

.search-overlay .close-search-overlay {
    color: #ffffff;
    text-shadow: none;
    font-size: 24px;
}

.search-overlay .search-form-wrapper {
    margin-top: 100px;
}

.search-overlay .search-title {
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 30px;
}

/* 
==============================
END FOOTER
==============================
*/
.standart-list:hover {
    background: #7cc4a5;
    cursor: pointer;
}


blockquote {
    margin: 0 auto;
    padding: 1em;
    border-left: 5px solid #999;
}

blockquote:before {
    display: none;
}

blockquote:not(:first-of-type) {
    margin-top: .5em;
}

blockquote p {
    color: #555;
    font-size: 1.2rem;
    line-height: 1.4;
    font-family: 'PT Serif', Cambria, 'Hoefler Text', Utopia, 'Liberation Serif', 'Nimbus Roman No9 L Regular', Times, 'Times New Roman', serif;
}

blockquote header {
    margin-top: .5em;
    padding: 0;
    color: #777;
    font-size: 18pt;
    text-align: left;
    font-style: italic;
}

blockquote footer {
    margin-top: .5em;
    padding: 0;
    color: #777;
    font-size: 12pt;
    text-align: left;
    font-style: italic;
}

blockquote footer:before {
    content: '-- ';
}

blockquote:nth-of-type(even) {
    text-align: right;
    border-left: none;
    border-right: 5px solid #999;
}

blockquote:nth-of-type(even) footer {
    text-align: right;
}

blockquote:nth-of-type(even) footer:before {
    content: '';
}

blockquote:nth-of-type(even) footer:after {
    content: ' �';
}



/* new version modifications */
.steps-container {
    background-color: #ffffff;
}


/*PROFILE*/
.research-used-heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.research-info {
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f0f0f0;
}
/* Questionnaire progress bar styling */
.questionnaire-progress-container {
    width: 100%;
    margin-bottom: 1rem;
}
.questionnaire-progress-bar {
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(to right, #ff9520, #ff8c00);
}
.questionnaire-progress-labels {
    font-size: 0.8rem;
    color: #6c757d;
    display: flex;
    justify-content: space-between;
    margin-top: 0.25rem;
}

.my-orange-progress .mud-progress-linear-bar {
    background: linear-gradient(to right, #ff9520, #ff8c00) !important;
}

{{ ... }}