@charset "utf-8";
/* Define color variables globally */
:root {
    --black: #000000;
    --white: #ffffff;
    --primary: #002AFF;
    --blue: #002AFF;
    --blue-rgb: 0, 42, 255;
    --light-blue: #cce6ff;
    --dark-blue: #034c81;
    --red: #FF0000;
    --green: #05CC47;
    --mint: #25DD85;
    --grey: #f5f5f5;
    --grey-rgb: 245, 245, 245;
    --mid-grey: #cfcfcf;  
    --slate: #40403E;
    --dark-slate: #3F414E;
    --brown: #51312a;
    --gold: #c37d16;
    --beta-color: #ffff00; /* Light yellow for beta notification */
    --main-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.1);
}

/* Base Styles - Applied to all screen sizes */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

a {
    text-decoration: none;
    color: var(--black);
}

a:link,
a:visited,
a:hover,
a:active {
    color: var(--black);
    text-decoration: none;
}

.contact-link {
    font-weight: 700;
    text-decoration: none;
    color: inherit; /* keeps the same text color as surrounding text */
}

/* Remove light blue autofill background globally for all inputs */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px var(--grey) inset !important;
    -webkit-text-fill-color: var(--black) !important;
    background-color: var(--grey) !important;
    border: 1px solid transparent !important;
    transition: background-color 5000s ease-in-out 0s; /* Prevents background color flash */
}

input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px var(--grey) inset !important;
    -webkit-text-fill-color: var(--black) !important;
    border-color: var(--black) !important;
}

body {
    background-color: var(--white);
    font-family: "Geist", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 650px;
    margin: 0 auto;
    min-height: 100vh;
}

/* Header Styles */
.header {
    box-sizing: border-box;
    /* border: 1px solid white; */
    width: 100%;
    height: 3.5rem;
    padding: 0.9375rem;
    background-color: var(--white);
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 650px;
    z-index: 100;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

.header__back {
    width: 1.875rem;
    height: 1.875rem;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.back__icon {
    height: 1.2rem;
    margin: 0;
    align-self: center;
}

.back__link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.post__title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    font-size: 1rem;
}

.post-container.no-results {
    text-align: center;
    padding: 20px;
    font-family: 'Geist', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
    background-color: var(--grey);
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.no-results-icon {
    display: block;
    margin: 0 auto 0 auto;
    width: 48px;
    height: 48px;
}

.header-container {
    /*max-width: 870px;*/
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.header-logo {
    width: 200px;
    height: auto;
    object-fit: contain;
}

.header-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
}

.settings-welcome {
    font-size: 1rem;
    font-weight: 400;
    color: var(--black);
    line-height: 1.4;
    margin: 0;
    margin-bottom: 0rem;
}

h1 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

h1.headers {
    font-size: 1rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem;
}

.content {
    padding: 0.9375rem;
    margin-top: 3rem;
}

.menu-item-spacer {
    background-color: transparent;
    padding: 1rem;
    display: flex;
    align-items: center;
    width: 100%;
}

.menu-item {
    background-color: var(--grey);
    border-radius: 1rem;
    padding: 0.7rem;
    margin-bottom: 1rem;
    display: flex;
    width: 100%;
    cursor: pointer;
}

.menu-icon {
    width: 1.875rem;
    height: 1.875rem;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0.8rem;
}

.menu-icon-svg {
    height: 1.3rem;
    object-fit: contain;
}

.menu-text {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.menu-item:has(.settings-description) .menu-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.menu-label {
    color: var(--black);
    font-weight: 400;
}

.menu-label.bold {
    color: var(--black);
    font-weight: 700;
}

.settings-description {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--black);
    line-height: 1.4;
    margin: 0;
    margin-bottom: 1rem;
}

.dmca-list {
    list-style-type: disc;
    padding-left: 1rem;
    margin: 1em 0;
}

.dmca-list li {
    margin-bottom: 0.5em;
    font-size: 0.9375rem;
    line-height: 1.4;
}

.post__editable ul,
.post-content ul {
    margin: 0.5rem 0;
    padding: 0;
    list-style-position: outside;
    margin-left: 0.9375rem;
    font-size: 0.9375rem;
}

.post__editable li,
.post-content li {
    margin: 0;
    padding: 0;
}

.ttl-settings {
    margin-bottom: 0.5rem !important;
}

.settings-description.disclaimer a {
    text-decoration: none;
    color: var(--black); 
}

.settings-description.disclaimer a:hover {
    text-decoration: underline;
    color: var(--black);
}

/* Input Wrapper */
.input-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
}

.input-wrapper select {
    width: 100%;
    padding: 1rem 1rem 1rem 0.7rem;
    border-radius: 1rem;
    border: none;
    font-size: 0.9375rem;
    font-weight: 400;
    outline: none;
    box-sizing: border-box;
    background-color: var(--grey);
    transition: border-color 0.3s ease;
    border: 1px solid transparent;
    font-family: "Geist", sans-serif;
    color: var(--black);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('home/img/dropdown-arrow.svg');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

.input-wrapper select:focus {
    border-color: var(--black) !important;
}

.input-wrapper select:invalid {
    color: var(--black);
}


/* Custom Select Styles */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    width: 100%;
    background-color: var(--grey);
    color: var(--black);
    padding: 1rem 0.7rem;
    font-size: 0.9375rem;
    font-weight: 400;
    border-radius: 1rem;
    border: 1px solid transparent;
    font-family: "Geist", sans-serif;
    text-align: left;
    cursor: pointer;
    appearance: none;
    background-image: url('home/img/dropdown-arrow.svg');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

.custom-select-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    font-weight: 500;
    background-color: var(--white);
    border-radius: 1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    margin-top: 0.25rem;
    z-index: 1000;
    list-style: none;
    padding: 0.5rem;
    max-height: 255px;
    overflow-y: auto;
    /*border: 1px solid #818181;*/
}

.custom-select-options li {
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    color: var(--black);
    cursor: pointer;
    transition: background 0.2s ease;
}

.custom-select-options li:hover {
    background-color: var(--grey);
    border-radius: 1rem;
}

.custom-select-options {
    /* existing styles... */
    overflow-y: scroll;

    /* Hide scrollbar (cross-browser) */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.custom-select-options::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}



.input-wrapper input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border-radius: 1rem;
    border: none;
    font-size: 0.9375rem;
    font-weight: 400;
    outline: none;
    box-sizing: border-box;
    background-color: var(--grey);
    transition: border-color 0.3s ease;
    border: 1px solid transparent;
}

.input-wrapper .icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.3rem !important;
    height: 1.3rem !important;
    pointer-events: none;
}

.input-wrapper input:focus {
    border-color: var(--black) !important;
}

/* Profile About Container */
.profile-about-container {
    width: 100%;
    box-sizing: border-box;
}

/* Profile About Wrapper */
.profile-about-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    min-height: 1.105rem;
}

/* Profile About Input */
.profile-about-input {
    width: 100%;
    padding: 0px;
    border: none;
    font-size: 0.9375rem;
    font-family: "Geist", sans-serif;
    color: var(--black);
    outline: none;
    box-sizing: border-box;
    background-color: var(--grey);
    transition: border-color 0.3s ease;
    resize: none;
    overflow: hidden;
    line-height: 1.3;
}

.profile-about-input::placeholder {
    color: var(--black);
    opacity: 1;
}

.profile-about-input:focus {
    color: var(--slate);
    outline: none;
}

/* Form Button */
.formButton {
    width: 100%;
    padding: 18px 28px;
    background-color: var(--black);
    color: var(--white);
    border: none;
    border-radius: 1rem;
    font-family: "Geist", sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    gap: 0.25rem;
    transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}


/* Contact Message Feedback */
#settings #contactMessageFeedback {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    text-align: left;
}

.error {
    color: var(--red);
    margin-top: 0rem;
    padding: 0.5rem 1rem;
    background-color: #fff2f4;
    border-radius: 1rem;
    border: 1px solid var(--red);
    font-weight: 500;
    font-size: 0.875rem;
}

.success {
    color: var(--green);
    margin-top: 0rem;
    padding: 0.5rem 1rem;
    background-color: #f2fff6;
    border-radius: 1rem;
    border: 1px solid var(--green);
    font-weight: 500;
    font-size: 0.875rem;
}

.disclaimer {
    font-size: 0.8rem !important;
    margin-top: 2rem;
}



