<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* styles.css */

/* Base styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
}

.container {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    padding-bottom: 0;
    margin: 0 auto;
    min-height: 75vh; /* Keep 80vh */
    display: flex; /* Add flexbox */
    flex-direction: column; /* Stack children */
    overflow-y: auto; /* Allow scrolling instead of hidden */
}


h1 {
    color: #333333;
    text-align: center;
    margin-bottom: 30px;
}

h1, .h1 {
    font-size: 2.6rem;
    font-weight: 500;
}

h2, .h2 {
    font-size: 1.75rem;
    font-weight: 400;
}

h3, .h3 {
    font-size: 1.75rem;
    font-weight: 400;
}


h4, .h4 {
    font-size: 1.75rem;
    font-weight: 400;
}

.sub-head {
    font-size: 2rem;
    font-weight: 410;
}

p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: #212529;
}

label {
    font-weight: normal;
    color: #212529;
}

.form-group {
    margin-bottom: 20px;
}


.form-control {
    border-radius: 0.25rem;
    border: 1px solid #ced4da;
    background-color: #fff;
    color: #495057;
}

.form-control:focus {
    border-color: #80bdff;
    box-shadow: none;
}

.btn {
    background-color: #3c9cdf;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 22px;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow */
    transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-primary {
    width: 100%;
}


.btn:hover {
    background-color: #3b6fc9;
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.15);
}

/* Override styles for disabled primary buttons */
.btn-primary:disabled {
    background-color: #3b6fc9; /* Set to your desired dark blue color */
    border-color: #007bff; /* Ensure border matches */
    color: #fff; /* Keep the text color white */
    opacity: 1; /* Remove any opacity */
    box-shadow: none;
}

.interpretation {
    margin-top: 40px;
}

.interpretation h2 {
    color: #333333;
    margin-bottom: 15px;
}

.interpretation p {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
}

.visitor-count {
    margin-bottom: 20px;
    font-size: 14px;
    color: #777;
}

/* Specific styles for the guesser page */
textarea {
    resize: vertical;
    border-radius: 15px !important;
    max-height: 130px;
}

#mbti_type {
    border-radius: 15px;
}

#from_mbti {
    border-radius: 15px;
}
#to_mbti {
    border-radius: 15px;
}
.interpretation {
    margin-top: 40px;
}

.interpretation h2 {
    color: #333333;
    margin-bottom: 15px;
}

.interpretation p {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
}


.loading-message {
    font-size: 1em;
    color: #555;
    vertical-align: middle;
}
.navbar-nav .nav-link {
    font-size: 18px; /* Adjust this value as needed */
}

.navbar-brand {
    font-size: 20px; /* Adjust this value as needed */
}


/* Profile Card Enhancements */
.card {
    border-radius: 10px;
}

.card-title {
    font-weight: 500;
    color: #343a40;
}

.card-text strong {
    color: #495057;
}

.jumbotron {
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: 5px;
}

#drop-area {
    position: relative;
    cursor: pointer;
    max-width: 300px !important;
    margin: 0 auto;
    min-height: 300px !important;
    padding: 0px !important;
    border-radius: 15px !important;
    border: white;
}

#drop-area.dragover {
    background-color: #f0f0f0;
}

#preview-image {
    max-width: 100%;
    height: auto;
    margin: 0px !important;
}
.message {
    display: flex;
    padding: 5px;
    border-radius: 25px;
}
.message.user {
    color: #43464b;
    text-align: left;
    margin-bottom: 5px;
    justify-content: flex-end;
}
.message + .message {
    margin-top: 0; /* Add minimal space between messages */
}
.message.user .content {
    background-color: #f0f0f0; /* Light grey background for user messages */
    border-radius: 25px;
    padding: 13px;
    align-self: flex-end;
}

.message .content {
    max-width: 100%;
    padding: 10px;
    max-width: 90%; /* Limit the max width */
    display: inline-block;
}

.message.guesser .content {
    padding: 5px;
}

#width-60{
    width: 100%; /* 80% of the parent element's width */

}

.ad-banner{
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Pushes content to the bottom */
    min-height: auto; /* Set a fixed height or use 100vh for full viewport height */
    overflow-y: auto; /* Allows scrolling if content overflows */
}


/*
.insights-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 30vh;
    overflow-y: auto;
}
*/
.original-price {
    text-decoration: line-through;
    color: #888;
    font-size: 1.5rem;
    margin-right: 8px;
}
  
.discounted-price {
    font-size: 1.3rem;
}

#checkout-button {
    width: 260px;
}

#upgrade-card {
      max-width: 600px;
      
}

.footer-container {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.spinner-text {
    margin-top: 50px;
}


.modal-content {
    border-radius: 8px;
}

.modal-header {
    position: relative;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0; /* Change left to right */
    left: auto; /* Ensure left is not set */
    width: 260px;
    height: 100%;
    background-color: #fff;
    overflow-y: auto;
    transform: translateX(100%); /* Slide in from the right */
    transition: transform 0.3s ease-in-out;
    z-index: 1050;
    box-shadow: -2px 0 5px rgba(0,0,0,0.3); /* Shadow on the left */
}

.mobile-menu.show {
    transform: translateX(0);
}

.mobile-menu-content {
    padding: 1rem;
}

.mobile-menu .nav-link {
    color: #333;
}

.mobile-menu .dropdown-menu {
    background-color: #f8f9fa;
    display: none; /* Initially hidden */
}

.mobile-menu .dropdown-menu.show {
    display: block;
}

/* Backdrop */
.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
    z-index: 1040; /* Just below the menu */
}

.mobile-menu-backdrop.show {
    opacity: 1;
    visibility: visible;
}


/* Responsive adjustments */
@media (max-width: 767px) {
    .row {
        flex-direction: column;
    }

    .col-md-6 {
        padding-left: 0;
        padding-right: 0;
    }
}

/* Hide the default navbar collapse on mobile */
@media (max-width: 991.98px) {
    .navbar-expand-lg .navbar-nav {
        display: none;
    }
}




/* #########Your new desktop styles here######### */
@media (min-width: 768px) {
    .ad-banner {
        width: 500px;
        max-width: 100%;
        margin: 0 auto;
        margin-top: 100px !important;
    }

    .btn-primary {
        width: 370px;
    }

    .form-control {
        border-radius: 0.25rem;
        border: 1px solid #ced4da;
        background-color: #fff;
        color: #495057;
    }

    .form-control:focus {
        border-color: #80bdff;
        box-shadow: none;
    }
    .form-group {
        margin-bottom: 15px;
        position: relative;
    }

    .col-md-6 {
        padding-left: 10px;
        padding-right: 10px;
    }
    #width-60{
        max-width: 60vw; /* 80% of the parent element's width */
        margin-left: auto; /* Center horizontally */
        margin-right: auto; /* Center horizontally */

    }
}

/* Journal entry list only */
@media (max-width: 576px) {
    .journal-item {                 /* &lt;- unique class */
      flex-direction: column;
      align-items: flex-start;
    }
    .journal-item .btn {
      align-self: flex-end;
      margin-top: 4px;
    }

    .yearly-item { /* new class unique to yearly ul */
        font-size: 0.9rem;
      }
      .yearly-item .btn {
        align-self: flex-end;
        margin-top: 4px;
      }
  }</pre></body></html>