/* START GENERIC CONTENT */

@import url( 'https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Inter', Arial, sans-serif;
    color: #FFF;
}

h1,
h2,
h3 {
    color: #FFF;
    font-size: 2em;
    margin-bottom: 20px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6);
}

ol,
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 15px;
}

footer {
    display: none;
}

a {
    color: #007bff;
    text-decoration: none;
    font-weight: normal;
}

.error {
    background-color: #ff4d4d;
    color: #FFF;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 10px;
    text-align: center;
    width: auto;
}

.form-group {
    position: relative;
    margin-bottom: 10px;
    text-align: left;
}

label {
    display: block;
    font-size: 1.1em;
    margin-bottom: 5px;
}

label input[type="checkbox"] {
    vertical-align: middle;
    width: auto;
    margin: 10px;
}

button {
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
    padding: 12px 24px;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

button:hover {
    background: linear-gradient(135deg, #005bb5, #00b0d3);
}

button.disabled {
    cursor: not-allowed;
    background-color: #cccccc;
    color: #666666;
}

button.disabled::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

button:active, button:focus {
    background: linear-gradient(135deg, #007bff, #00d2ff);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

@media (pointer: coarse) {
    button:hover {
        background: linear-gradient(135deg, #007bff, #00d2ff);
    }
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* END GENERIC CONTENT */

/* START NEW NAVBAR UI */
header {
    display: flex;
    background-color: rgba(15, 15, 15, 0.2);
    color: #FFF;
    box-shadow: 10px 0 20px #19131f;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 0.5%;
    border: 1px solid #2e2834;
    border-radius: 10px;
    box-sizing: content-box;
    /* Big boy settings */
    height: 60px;
    margin: 40px;
    font-size: xx-large;
}

header nav {
    background-color: #0f0f0f;
    border-radius: 5px;
    min-height: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-center a {
    color: #5c20bd;
}

.nav-right {
    display: flex;
    align-items: center;
    position: relative;
}

.hamburger {
    position: absolute;
    right: 10px;
    display: block;
    width: 1.25em;
    height: 0.8em;
    margin-right: 0.3em;
    border-top: 0.2em solid #fff;
    border-bottom: 0.2em solid #fff;
    z-index: 10000;
    cursor: pointer;
    box-sizing: content-box;
    transition: border-color 0.3s ease;
}

.hamburger:before {
    content: "";
    position: absolute;
    top: 0.3em;
    left: 0px;
    width: 100%;
    border-top: 0.2em solid #fff;
    transition: border-color 0.3s ease;
}

.hamburger:hover, .hamburger:hover:before {
    border-color: #5c20bd;
}

.dropdown-menu {
    position: absolute;
    right: -14px;
    top: calc(100% + 40px);
    background-color: #0f0f0f;
    color: #fff;
    border-radius: 5px;
    border-radius: 0px 0px 10px 10px;
    box-shadow: 0px 10px 20px #19131f;
    opacity: 0;
    display: none;
    border-left: 1px solid #2e2834;
    border-right: 1px solid #2e2834;
    border-bottom: 1px solid #2e2834;
    width: auto;
    z-index: 1000;
}

@media screen and (max-width: 1800px) {
    .dropdown-menu {
        right: -8px;
        top: calc(100% + 32px);
    }
}


@media screen and (max-width: 1792px) {
    .dropdown-menu {
        right: -8px;
        top: calc(100% + 32px);
    }
}

@media screen and (max-width: 1472px) {
    .dropdown-menu {
        right: -8px;
        top: calc(100% + 32px);
    }
}

@media screen and (max-width: 1280px) {
    .dropdown-menu {
        right: -7px;
        top: calc(100% + 32px);
    }
}

@media screen and (max-width: 1024px) {
    .dropdown-menu {
        right: -6px;
        top: calc(100% + 32px);
    }
}

@media screen and (max-width: 960px) {
    .dropdown-menu {
        right: -6px;
        top: calc(100% + 32px);
    }
}

@media screen and (max-width: 768px) {
    #navcta {
        font-size: smaller;
    }
    .dropdown-menu {
        right: -5px;
        top: calc(100% + 32px);
    }
}

@media screen and (max-width: 700px) {
    #navcta {
        font-size: small;
    }
}

@media screen and (max-width: 576px) {
    .dropdown-menu {
        right: -4px;
        top: calc(100% + 32px);
    }
}

nav a {
    text-decoration: none;
    color: inherit;
}

.menu-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-bottom: 20px;
}

.menu-items a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px 30px 10px 30px;
}

.menu-items a:hover {
    color: #5c20bd;
}

#menu.active {
    opacity: 1;
    display: block;
    pointer-events: auto;
}

  /* START NAVBAR SEARCH */
#nav-search {
    width: 400px;
    border-radius: 2px;
    box-sizing: border-box;
    border: 0.5px solid #19131f;
    background-color: #000;
    color: #FFF;
    padding: 5px;
    font-size: x-large;
}

.search-input {
    caret-color: white;
}

.search-input::after {
    content: '|';
    animation: blink 0.7s infinite;
    display: inline-block;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

  /* END NAVBAR SEARCH */

  /* START NAVBAR CTA */
#navcta {
    color: #5c20bd;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

#navcta:hover {
    color: #8a4fff;
    text-shadow: 0 0 10px #5c20bd;
    animation: pulse-glow 1.5s infinite alternate;
}

@keyframes pulse-glow {
    from { text-shadow: 0 0 10px #5c20bd; }
    to { text-shadow: 0 0 20px #8a4fff; }
}
  /* END NAVBAR CTA */

/* END NEW NAVBAR UI */ 

/* START POPUPS AND TOASTS */

.toast-fsEW {
    background-color: #333;
    color: white;
    padding: 10px;
    border-radius: 10px;
    max-width: 300px;
    width: auto;
    text-align: center;
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease-in-out;
}

.toast-fsEW.active {
    opacity: 1;
    visibility: visible;
}

.toast-fsEW {
    background-color: #333;
    color: white;
    padding: 10px;
    border-radius: 5px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    bottom: 10px;
    margin: 0 auto;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast-fsEW.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in-out;
    animation: toast-slide-in 0.5s ease-out forwards;
}

@media (max-width: 768px) {
    .toast-fsEW {
        max-width: 90%;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .toast-fsEW {
        max-width: 100%;
        padding: 15px;
    }
}

@keyframes toast-slide-in {
  0% {
    bottom: -100px;
    opacity: 0;
  }
  100% {
    bottom: 10px;
    opacity: 1;
  }
}

@keyframes toast-slide-out {
  0% {
    bottom: 10px;
    opacity: 1;
  }
  100% {
    bottom: -100px;
    opacity: 0;
  }
}

.toast-fsEW-icon {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.toast-fsEW p {
    margin: 0;
    flex-grow: 1;
    word-wrap: break-word;
}

.toast-fsEW.hide {
    animation: toast-slide-out 0.5s ease-in forwards;
}

.popup-abX3 {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-abX3.active {
    visibility: visible;
    opacity: 1;
}

.popup-abX3 .popup-content-ds84 {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-sizing: border-box;
    justify-content: flex-start;
    min-height: 200px;
}

.popup-abX3 .popup-content-ds84 .popup-text-container {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: inherit;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.popup-abX3 .popup-abX3-icon {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.popup-abX3 .popup-text-container h2 {
    color: #FFF;
    font-size: 18px;
    margin: 0;
}

.popup-abX3 .popup-text-container p {
    color: #FFF;
    margin-top: 5px;
    margin-bottom: 0;
    margin-left: 5px;
    margin-right: 5px;
    padding: 5px;
}

.popup-abX3 .popup-buttons-as56 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.popup-abX3 .popup-buttons-as56 button {
    padding: 10px;
    width: 48%;
    min-width: 100px;
}

@media (max-width: 768px) {
    .popup-abX3 .popup-content-ds84 {
        max-width: 90%;
        width: auto;
        padding: 15px;
    }

    .popup-abX3 h2 {
        font-size: 16px;
    }

    .popup-abX3 .popup-buttons-as56 button {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }

    .popup-abX3 .popup-buttons-as56 {
        flex-direction: column;
        gap: 10px;
    }

    .popup-abX3 .popup-abX3-icon {
        width: 50px;
        height: 50px;
    }

    .popup-abX3 .popup-text-container {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .popup-abX3 .popup-content-ds84 {
        max-width: 100%;
        width: auto;
        padding: 15px;
    }

    .popup-abX3 h2 {
        font-size: 14px;
    }

    .popup-abX3 .popup-buttons-as56 button {
        width: 100%;
        padding: 14px;
        font-size: 14px;
    }

    .popup-abX3 .popup-buttons-as56 {
        flex-direction: column;
        gap: 10px;
    }

    .popup-abX3 .popup-abX3-icon {
        width: 45px;
        height: 45px;
    }

    .popup-abX3 .popup-text-container {
        padding: 8px;
    }
}

/* END POPUPS AND TOASTS */

/* START CONTENT GUIDANCE */
.content-guide-bottom-bar {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    z-index: 9999;
    box-sizing: border-box;
    padding: 10px;
}

.content-guide-bottom-bar > span {
    font-size: 16px;
    text-align: center;
    flex: 1;
    margin-right: 0;
}

.skip-tutorial-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    margin-left: 20px;
    width: auto;
}

.skip-tutorial-btn:hover {
    background-color: #005bb5;
}

@media screen and (max-width: 600px) {
    .content-guide-bottom-bar {
        padding: 5px 40px 5px 40px;
    }

    .content-guide-bottom-bar > span {
        font-size: 14px; 
        max-width: fit-content;
    }

    .skip-tutorial-btn {
        padding: 5px;
        padding-top: 2px;
        padding-bottom: 2px;
        font-size: 12px;
        margin-left: 5px;
    }

    .content-guide-bottom-bar > span {
        flex: none;
    }
}

.kdle-tooltip-dyn {
    position: absolute !important;
    background-color: rgba(0, 0, 0, 0.8) !important;
    color: white !important;
    padding: 15px 20px !important;
    font-size: 16px !important;
    text-align: center !important;
    opacity: 0; 
    display: block;
    transition: opacity 0.3s ease !important;
    z-index: 9999 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5) !important; 
    border-radius: 8px !important;
    min-width: 150px !important;
    max-width: 250px !important;
    margin-bottom: 5px !important;
}

.azAZ-skip-btn-dyn {
    background-color: #007bff !important;
    color: white !important;
    border: none !important;
    border-radius: 5px !important;
    padding: 8px 15px !important;
    cursor: pointer !important;
    z-index: 10001 !important; 
    transition: background-color 0.3s ease !important;
    margin-top: 10px !important;
    font-size: 14px !important;
    width: auto;
}

.azAZ-skip-btn-dyn:hover {
    background-color: #005bb5 !important;
}

.sdfe-highlight-dyn {
    box-shadow: 0 0 10px 2px #007bff !important;
    transition: box-shadow 0.3s ease !important;
    z-index: 9999 !important;
}

.kdle-tooltip-dyn[style*="--tooltip-direction=down"]::after {
    visibility: visible;
    top: -10px !important;
    left: 50% !important;
    border-top-color: #333 !important;
    border-left-width: 10px !important;
    border-right-width: 10px !important;
    margin-left: -10px !important;
}

.kdle-tooltip-dyn[style*="--tooltip-direction=up"]::after {
    visibility: visible;
    bottom: -10px !important;
    left: 50% !important;
    border-bottom-color: #333 !important;
    border-left-width: 10px !important;
    border-right-width: 10px !important;
    margin-left: -10px !important;
}

.kdle-tooltip-dyn[style*="--tooltip-direction=right"]::after {
    visibility: visible;
    top: 50% !important;
    left: -10px !important;
    border-right-color: #333 !important;
    border-top-width: 10px !important;
    border-bottom-width: 10px !important;
    margin-top: -10px !important;
}

.kdle-tooltip-dyn[style*="--tooltip-direction=left"]::after {
    visibility: visible;
    top: 50% !important;
    right: -10px !important;
    border-left-color: #333 !important;
    border-top-width: 10px !important;
    border-bottom-width: 10px !important;
    margin-top: -10px !important;
}

/* END CONTENT GUIDANCE */

/* START NEW UI FOR SITE */

  /* START INDEX */
.glass-container { /* index.tt, register.tt */
    background-color: rgba(15, 15, 15, 0.3)!important;
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin: auto;
    text-align: center;
    margin: 50px 40px 100px 40px !important;
    width: auto!important;
    max-width: initial!important;
    border: 1px solid #2e2834!important;
    padding: 3% 5% 3% 5%;
}

#somninaut {
    content:url("https://www.somninaut.com/images/revised_logo.png");
    width: 100%!important;
    box-shadow: initial!important;
}

.feature-list {
    display: flex !important;
    gap: 50px !important;
    padding: 50px !important;
    flex-direction: row-reverse;
    align-content: center;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.feature-card {
    background-color: rgba(15, 15, 15, 1) !important;
    border-radius: 10px !important;
    border: 0.5px solid #2e2834 !important;
    box-shadow: 0 10px 120px #000 !important;
    padding: 40px 10px 10px 10px !important;
    max-width: 250px;
    min-height: 250px;
}

.index-card-top {
    max-width: 480px;
    flex-grow: 1;
}

.index-card-top h2 {
    color: #a175f9;
}

.feature-card h3 {
    color: #a175f9;
}

.index-card h2 {
    display:block!important;
    color: #a175f9;
}

.index-card {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
}

#top-cards {
    display:flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    align-items: stretch;
}

#body-content {
    background-color: rgba(15, 15, 15, 1) !important;
    border-radius: 10px !important;
    border: 0.5px solid #2e2834 !important;
    box-shadow: 0 0px 60px #000 !important;
    padding: 5% 10% 5% 10%;
    margin-bottom: 20px;
}

#body-content h1 {
    display:none;
}

#body-content h2:first-child {
    display:none;
}

  /* START SCREEN SIZE */
@media screen and (max-width: 600px) {
    .glass-container {
        padding:initial;
    }
}

@media screen and (min-width: 1800px) {
}

@media screen and (min-width: 2500px) {
    .index-card-top {
        max-width: 800px;
    }
}

@media screen and (max-width: 1500px) {
    #body-content {
	padding: 1% 2% 1% 2%;
    }
    .index-card-top {
        max-width: 800px;
    }
}
  /* END INDEX */
  /* START ANALYSTS */

.analysts-list {
    display: grid!important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))!important;
    gap: 50px!important;
    margin: auto!important;
}

.analysts-container {
    margin: 20px!important;
    text-align: center!important;
    display: flex!important;
    align-content: center!important;
    align-items: center!important;
    justify-content: space-evenly!important;
}

.analyst-card {
    color: #FFF;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px;
    background-color: rgba(15, 15, 15, 1)!important;
    border-radius: 10px!important;
    border: 0.5px solid #2e2834!important;
    box-shadow: 10px 0px 120px #000!important;
    margin: 50px 50px 50px 50px!important;
    min-width: 300px!important;
    transition: border-color 0.3s ease;
}

.analyst-card:hover {
    transform: scale(1.5);
    z-index: 10000;
    filter: brightness(1.05);
    border-color: #5c20bd !important;
}

  /* END ANALYSTS */
  /* START REGISTER */
#register-container {
    background-color: rgba(15, 15, 15, 1) !important;
    border-radius: 10px !important;
    border: 0.5px solid #2e2834 !important;
    box-shadow: 0 0px 60px #000 !important;
    padding: 40px 200px 40px 200px;
    margin-bottom: 20px;
    display:flex;
    justify-content: center;
    align-content: center;
}

  /* MULTI-PAGE */

.form-group {
    text-align: center!important;
}

.form-group::after input[type="text"],
.form-group::after input[type="password"] {
    content: '|'!important;
    animation: blink 0.7s infinite!important;
    display: inline-block!important;
}

.form-group input[type="text"], 
.form-group input[type="password"] {
    width: 400px!important;
    border-radius: 2px!important;
    box-sizing: border-box!important;
    border: 0.5px solid #19131f!important;
    background-color: #000!important;
    background: #000!important;
    color: #FFF!important;
    padding: 5px!important;
    font-size: x-large!important;
    caret-color: white!important;
}

button { /* MULTI-PAGE */
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
    padding: 12px 24px;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.1rem;
    box-shadow: 0px 0px 20px #5c20bd!important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    /* width: 300px!important;*/
    border: 0.5px solid #fff!important;
    cursor: pointer!important;
}

#password-error {
    position:relative;
}

#email-error {
    position:relative;
}

.modal-content {
    padding: 20px;
    width: 80%;
    max-width: 600px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: rgb(15, 15, 15) !important;
    border-radius: 10px !important;
    border: 0.5px solid #2e2834 !important;
    box-shadow: 0 0px 60px #000 !important;
}

  /* END REGISTER */
  /* START LOGIN */

#logintainer {
    background-color: rgba(15, 15, 15, 1) !important;
    border-radius: 10px !important;
    border: 0.5px solid #2e2834 !important;
    box-shadow: 0 0px 60px #000 !important;
    padding: 40px 200px 40px 200px;
    margin-bottom: 20px;
    display:flex;
    justify-content: center;
    align-content: center;
}

  /* END LOGIN */
  /* START RECOVERY */

#recoverytainer {
    background-color: rgba(15, 15, 15, 1) !important;
    border-radius: 10px !important;
    border: 0.5px solid #2e2834 !important;
    box-shadow: 0 0px 60px #000 !important;
    padding: 40px 200px 40px 200px;
    margin-bottom: 20px;
    display:flex;
    justify-content: center;
    align-content: center;
}

  /* END RECOVERY */
  /* START FAQ */

#faqtainer {
    background-color: rgba(15, 15, 15, 1) !important;
    border-radius: 10px !important;
    border: 0.5px solid #2e2834 !important;
    box-shadow: 0 0px 60px #000 !important;
    padding: 40px 200px 40px 200px;
    margin-bottom: 20px;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}

  /* END FAQ */
  /* START PRIVACY */

#privtainer {
    background-color: rgba(15, 15, 15, 1) !important;
    border-radius: 10px !important;
    border: 0.5px solid #2e2834 !important;
    box-shadow: 0 0px 60px #000 !important;
    padding: 40px 200px 40px 200px;
    margin-bottom: 20px;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}

  /* END PRIVACY */
  /* START DASHBOARD */

.dashboard-section {
    background-color: rgba(15, 15, 15, 0.3)!important;
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin: auto;
    text-align: center;
    margin: 50px 40px 0px 40px !important;
    width: auto!important;
    max-width: initial!important;
    border: 1px solid #2e2834;
    padding: 3% 5% 3% 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    box-sizing: border-box;
    width: 100%;
}

.dashboard-section .section-card {
    background-color: rgba(15, 15, 15, 1) !important;
    border-radius: 10px !important;
    border: 0.5px solid #2e2834;
    box-shadow: 0 0px 60px #000;
    padding: 5% 10% 5% 10%;
    margin-bottom: 20px;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}

.section-card {
    background-color: rgba(80, 80, 80, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-card h2 {
    color: #e0e0e0;
    font-size: 1.8em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.section-card p {
    color: #b0b0b0;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.section-card a {
    color: #66ccff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.section-card:hover {
    cursor: pointer;
}

.user-info p {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 20px;
}


  /* END DASHBOARD */
  /* START PROFILE */
  /* END PROFILE */
  /* START CHECKOUT */

#checkout {
    background-color: rgba(15, 15, 15, 0.3)!important;
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin: auto;
    text-align: center;
    margin: 50px 40px 0px 40px !important;
    width: auto!important;
    max-width: initial!important;
    border: 1px solid #2e2834!important;
    padding: 3% 5% 3% 5%;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

#inner-checkout {
    background-color: rgba(15, 15, 15, 1) !important;
    border-radius: 10px !important;
    border: 0px solid #2e2834 !important;
    box-shadow: 0 0px 60px #000 !important;
    padding: 5% 10% 5% 10%;
    margin-bottom: 20px;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}

#checkout-form .form-group,
#checkout-form .form-group input[type="text"] {
    width: 100% !important;
    border-radius: 2px !important;
    box-sizing: border-box !important;
    border: 0px solid #19131f !important;
    color: #FFF !important;
    padding: 10px !important;
    font-size: x-large !important;
    caret-color: white !important;
}

#checkout-form label {
    font-size: x-large!important;
    text-align: left!important;
}

#checkout-form select {
    font-size:x-large!important;
}

.checkout-labels {
    padding-left: 10px;
}

  /* START JOURNAL */

#journal-entry-form {
    background-color: rgb(15, 15, 15) !important;
    border-radius: 10px !important;
    border: 0.5px solid rgb(46, 40, 52) !important;
    box-shadow: rgb(0, 0, 0) 0px 0px 60px !important;
    padding: 5% 10%;
    margin-bottom: 20px;
    width: 100%;
    min-width: 800px;
}

#journal-entry-form {
    display: block;
}

#journal-entry-form .button-container {
    display: flex;
    justify-content: space-around;
    gap: 10px;
    margin-top: 10px;
}

#journal-entry-form button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    max-width: 250px;
}

#journal-entry-form button[type="submit"] {
    color: white;
}

#journal-entry-form button[type="button"] {
    color: white;
}

#journal-entry-form button:hover {
    opacity: 0.8;
}

#journal-entry-form textarea {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    color: #fff;
}

.journal-form {
    margin-bottom: 30px;
    display: none;
    width: 100%;
}   

.journal-form form {
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 20px;
}

.journal-form input,
.journal-form textarea {
    margin-bottom: 10px;
    padding: 10px;
    font-size: 16px;
    background-color: #333;
    border-color: #444;
    border-radius: 10px;
}

.journal-form input {
    color: #FFF;
    width: 100%;
}


.journal-content {
    background-color: rgba(15, 15, 15, 0.3)!important;
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin: auto;
    text-align: center;
    margin: 50px 40px 0px 40px !important;
    border: 1px solid #2e2834!important;
    padding: 5% 10% 5% 10%;
    display: none;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

#entries-list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.journal-entries {
    background-color: rgba(15, 15, 15, 0.3)!important;
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin: auto;
    text-align: center;
    margin: 50px 40px 0px 40px !important;
    border: 1px solid #2e2834!important;
    padding: 5% 10% 5% 10%;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.journal-card {
    background-color: rgba(15, 15, 15, 1) !important;
    border-radius: 10px !important;
    border: 0px solid #2e2834 !important;
    box-shadow: 0 0px 60px #000 !important;
    padding: 5% 10% 5% 10%;
    flex-grow: 1;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    position: relative;
}

.journal-card label {
    display: none;
}

.journal-card h3 {
    font-size: 20px;
    margin: 10px 0;
}

.journal-card p {
    font-size: 16px;
    line-height: 1.5;
}

.journal-card small {
    font-size: 12px;
    color: #666;
}

.dream-details {
    background-color: rgba(35, 35, 35, 0.5)!important;
}

.stats {
    width: 100%;
    text-align: center;
    align-content: center;
    align-self: center;
    border-radius: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.entry-date {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
}

.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #007bff;
    color: #fff;
    font-size: 2.5em;
    font-family: Arial, sans-serif;
    border: none;
    border-radius: 50%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    font-weight: bold;
    transform: translateX(-50%);
}

.floating-btn:hover {
    background-color: #0056b3;
}

.entry-date {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-align: left;
}

.new-entry {
    text-align: center;
}

.delete-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 9999;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    width: 300px;
    background-color: rgba(51, 51, 51, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

button.dlt-btn {
    margin: 5px;
}

.sliders output {
    margin-bottom: 30px;
}

.sliders {
    margin-top: 20px;
}

.sliders label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.sliders input[type="range"] {
    width: 100%;
}

.sliders output {
    display: block;
    margin-top: 5px;
    text-transform: capitalize;
}

/*output {
    font-size: 14px;
    color: #a4a4a4;
    text-align: center;
}*/

.progress-container {
    margin-bottom: 10px;
    padding: 5px 0;
}

.progress-label {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
}

.progress-bar-outer {
    width: 100%;
    height: 15px;
    border: 2px solid #444;
    border-radius: 10px;
    background-color: #333333;
    position: relative;
}

.progress-bar-inner {
    height: 100%;
    border-radius: 10px;
    background-color: #007bff;
    transition: width 0.3s ease-in-out;
}

.progress-value {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.cnf-dlt {
    background-color: #333;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #444;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.info-icon {
    display: inline-block;
    width: 15px;
    height: 15px;
    text-align: center;
    line-height: 15px;
    border: 1px solid #555;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    margin-left: 5px;
    font-family: Arial, sans-serif;
    font-size: small;
}

.tooltip {
    position: absolute;
    background-color: #222;
    color: #ddd;
    padding: 5px;
    border-radius: 10px;
    font-size: 14px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0s linear 0.2s;
    z-index: 1000;
    max-width: 200px;
    word-wrap: break-word;
    text-align: center;
}

.info-icon:hover {
    background-color: #444;
}

.tooltip {
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.info-icon:hover + .tooltip {
    opacity: 1;
}

.sleep-technology {
    font-size: xx-small!important;
}

.analyze-btn, .share-btn, .manage-share-btn {
    max-width: 250px;
    margin: 10px;
}

#submit-analysis {
    max-width: 250px;
    margin: 10px;
    position: relative;
}

#submit-analysis.disabled {
    cursor: not-allowed;
    background-color: #cccccc;
    color: #666666;
    position: relative;
}

#submit-analysis.disabled::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.analyst-name {
    flex: 1;
    text-align: left;
}

.dream-details {
    padding: 10px;
    background-color: rgba(80, 80, 80, 0.5);
    border-radius: 10px;
    margin-bottom: 10px;
    white-space: pre-line;                                                                                                                                                                                         
    word-wrap: break-word; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pg-btn-left,
.pg-btn-right {
    display: inline-block;
    text-decoration: none;
    border-radius: 10px;
    margin: 10px;
    width: 150px;
    background: linear-gradient(135deg, #007bff, #00d2ff);
    color: white;
    padding: 12px 24px;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.1rem;
    box-shadow: 0px 0px 20px #5c20bd !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    border: 0.5px solid #fff !important;
    cursor: pointer !important;
}

.pg-btn-left:hover,
.pg-btn-right:hover {
    background-color: #0056b3;
}

.pg-btn-left:disabled, 
.pg-btn-right:disabled,
.pg-btn-left.disabled, 
.pg-btn-right.disabled {
    background-color: #d6d6d6;
    background: #d6d6d6;
    color: #999;
    cursor: not-allowed;
    opacity: 0.6;
    display:none;
}

.pg-btn-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
}

.pg-btn-left {
    margin-right: 15px;
}

.pg-text {
    text-align: center;
    flex-grow: 1;
    text-align: center;
}

.pg-btn-right {
    margin-left: 15px;
}

#analysis-error-content {
    font-size: 1em;
    color: #FF6347;
}

.dream-entry-details {
    font-size: 1em;
    text-align: center;
    padding: 10px;
    margin-bottom: initial;
    padding-bottom: 0px;
}

.dream-analyst-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.analyst-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.interpreter-portrait {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.comment-container {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    padding: 10px;
}

.dream-analysis-text {
    font-size: 1.2rem;
    color: #FFF;
    margin-top: 10px;
    text-align: center;
}

.analysis-date {
    font-size: 0.85em;
    color: #FFF;
    font-style: italic;
    text-align: center;
}

#content {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 768px) {
    .dream-analyst-container {
        flex-direction: column;
        align-items: center;
    }

    .analyst-info {
        flex-direction: column;
        align-items: center;
    }

    .comment-container {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .analyst-info {
        flex-direction: column;
        align-items: center;
    }

    .interpreter-portrait {
        margin-bottom: 5px;
    }

    .analyst-name {
        text-align: center;
    }

    .dream-analysis-text {
        font-size: 0.9em;
    }

}

.dream-analysis-entry {
    background-color: rgba(80, 80, 80, 0.5);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.delete-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    border: none;
    padding: 3px 6px;
    border-radius: 50%;
    font-size: 10px;
    color: #333;
    cursor: pointer;
    width: 15px;
    height: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: initial;
    font-weight: bold;
}

#delete-journal-entry {
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2), 0 1px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(145deg, #fff, #e0e0e0);
    transition: all 0.3s ease;
    background: radial-gradient(circle, #e74c3c, #c0392b);
}

#delete-journal-entry:before {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 10%, rgba(0, 0, 0, 0.3) 80%);
}

#delete-journal-entry:hover {
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.4), 0 3px 10px rgba(0, 0, 0, 0.15);
}

#analysis-popup {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.analysis-content {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 750px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    height: auto;
    max-height: 90vh;
    overflow: hidden;
    align-items: center;
}

.interpreter-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

#interpreter-name-analysis {
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
}

#interpreter-description-analysis {
    font-size: 14px;
    color: #FFF;
    text-align: center;
    margin-top: 10px;
}

#interpreter-portrait-analysis {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
    object-fit: cover;
}

.dream-analysis-text-result {
    margin-top: 20px;
    text-align: left;
    font-size: 14px;
    line-height: 1.6;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 10px;
    margin: 10px 0;
    overflow-y: auto;
    flex-grow: 1;
    max-height: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    text-align: justify;
}

#close-analysis-popup {
    background-color: #007bff;
    color: white;
    cursor: pointer;
    padding: 10px;
    margin-top: 10px;
    border-radius: 10px;
    text-align: center;
    max-width: 200px;
}

@media screen and (max-width: 600px) {
    .analysis-content {
        width: 90%;
        padding: 15px;
    }

    #interpreter-name-analysis {
        font-size: 14px;
    }

    .dream-analysis-text-result {
        font-size: 12px;
        max-height: 250px;
    }

    #close-analysis-popup {
        font-size: 14px;
    }
}

#interpreter-popup {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.interpreter-popup-content {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.interpreter-popup-content h3 {
    text-align: center;
}

#interpreter-select, #product-select {
    width: 100%;
    padding: 8px;
    margin-bottom: 20px;
    font-size: 16px;
}

#interpreter-details {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

#interpreter-portrait {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
    margin-bottom: 10px;
}

#interpreter-description {
    flex: 1;
}

#interpreter-name {
    color: #FFF;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
}

#interpreter-description-text {
    font-size: 14px;
    color: #FFF;
}

.button-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.cancel-btn, .sub-analyze-btn {
    max-width: 250px;
    margin: 10px;
    flex: 1;
}

#interpreter-portrait {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 10px;
}

#interpreter-select {
    background-color: #333;
    color: #f5f5f5;
    border: 1px solid #444;
    padding: 8px;
    font-size: 16px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#interpreter-select option {
    background-color: #444;
    color: #f5f5f5;
}

#interpreter-select:focus {
    outline: none;
    border-color: #0088cc;
    background-color: #555;
}

@media screen and (max-width: 600px) {
    .interpreter-popup-content {
        width: 90%;
        padding: 15px;
    }

    #interpreter-name {
        font-size: 16px;
    }

    #interpreter-description-text {
        font-size: 12px;
    }

    #interpreter-details {
        flex-direction: column;
        align-items: center;
        margin-bottom: 10px;
    }

    #interpreter-portrait {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .button-container {
        justify-content: center;
    }

    .cancel-btn, .sub-analyze-btn {
        font-size: 14px;
    }
}

#buy-credits {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.inner-container {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

#buy-credits h2 {
    font-size: 24px;
    font-weight: bold;
    color: #FF6347;
    margin-bottom: 10px;
    text-align: center;
}

#buy-credits p {
    font-size: 16px;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 20px;
}

.product-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    display: block;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.buy-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 10px;
    font-size: 16px;
    max-width: 200px;
    margin: 5px 20px 5px 20px;
    transition: background-color 0.3s ease;
}

.buy-btn:hover {
    background-color: #005bb5;
}

#product-select {
    background-color: #333;
    color: #f5f5f5;
    border: 1px solid #444;
    padding: 10px;
    width: 100%;
    font-size: 16px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Media Query for Small Screens */
@media screen and (max-width: 600px) {
    #buy-credits {
        padding: 10px;
    }

    .inner-container {
        padding: 10px;
    }

    #buy-credits h2 {
        font-size: 20px;
    }

    #buy-credits p {
        font-size: 14px;
    }

    .product-image {
        width: 80%;
        max-width: 150px;
    }

    .buy-btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    #product-select {
        padding: 8px;
        font-size: 14px;
    }
}

/* share content */
.share-inner-container {
    max-width: 400px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

.dream-link-status {
    padding:10px 20px;
    background-color:#2b2b2b;
    border-radius:5px;
    border:1px solid #444;
    box-shadow:0 4px 12px rgba(0,0,0,.5);
    text-align:center;
    font-size:14px;
    color:#ddd;
    margin-bottom:20px;
}

.dream-link-views {
    padding:10px 20px;
    background-color:#2b2b2b;
    border-radius:5px;
    border:1px solid #444;
    box-shadow:0 4px 12px rgba(0,0,0,.5);
    text-align:center;
    font-size:14px;
    color:#ddd
}

#link-status {
    font-weight:400;
    color:#ccc;
}

.input-and-button {
    display:flex;
    align-items:center;
    width:340px;
    box-shadow:0 4px 12px rgba(0,0,0,.5);
    transition:transform .3s ease,box-shadow .3s ease;
    margin-bottom:20px;
}

.shared-link-txt {
    font-size: small;
    font-weight: bold;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6);
}

#urlInput {
    font-size:14px;
    width:100%;
    border-radius:5px 0 0 5px;
    border:1px solid #444;
    background:#333;
    outline:0;
    transition:border-color .3s ease,box-shadow .3s ease;
    height:36px;
    margin:0;
    color:#fff;
    box-shadow:none;
    padding-left:5px;
    font-size:xx-small;
}

#copy-edit-btn {
    border-radius:0 5px 5px 0;
    padding:8px 16px;
    border:1px solid #444;
    background-color:#007bff;
    color:#fff;
    cursor:pointer;
    border-left:none;
    width:80px;
    height:36px;
    text-align:center;
    line-height:20px;
    transition:background-color .3s ease;
    box-shadow:initial;
    font-size:small;
}

#view-count {
    font-weight:400;
    color:#ccc;
}

@media (max-width: 768px) {

    .share-inner-container {
        margin: 10px auto;
        max-width: 100%;
    }

    .input-and-button {
        width: 100%;
    }

    #urlInput {
        width: calc(100% - 80px);
    }

    #copy-edit-btn {
        width: 80px;
    }

    .dream-link-status,
    .dream-link-views {
        font-size: 12px;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {

    .input-and-button {
        width: 100%;
    }

    #urlInput {
        font-size: 12px;
    }

    #copy-edit-btn {
        width: 80px;
        font-size: 12px;
    }

    .dream-link-status,
    .dream-link-views {
        font-size: 10px;
        padding: 6px 12px;
    }
}

/* end share content */

.humorous {
    color: #FF6347;
    font-style: italic;
}

.serious {
    color: #007BFF;
    font-style: italic;
}

#textarea-wrapper {
    position: relative;
}

#title-wrapper {
    position: relative;
}

#content textarea {
    width: 100%;
    padding-right: 20px;
    font-size: 16px;
    box-sizing: border-box;
}

.microphone-icon {
    position: absolute;
    right: 5px;
    bottom: 25px;
    cursor: pointer;
}

#title-microphone.microphone-icon {
    position: absolute;
    right: 12px !important;
    bottom: 19px !important;
    cursor: pointer;
}

.microphone-icon img {
    width: 24px;
    height: 24px;
}

.microphone-icon img:hover {
    opacity: 0.8;
}

.active-recording {
    border-radius: 50%;
    box-shadow: 0 0 10px 2px #007bff !important;
    transition: box-shadow 0.3s ease !important;
}

/*
textarea::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

textarea::-webkit-scrollbar-thumb {
    background-color: #333;
    border-radius: 3px;
}

textarea::-webkit-scrollbar-thumb:hover {
    background-color: #444; 
}

textarea::-webkit-scrollbar-track {
    background-color: #333;
    border-radius: 3px;
}
*/

.tts-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.dream-reader {
    background-color: #333;
    border-radius: 10px;
    margin: 0px 20px 0px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,.5);
    transition: transform .3s ease,box-shadow .3s ease;
    white-space: normal;
    padding: 10px;
    padding-bottom: 40px;
}

.dream-reader label {
    padding: initial;
    margin-bottom: initial;
    text-align: left;
    padding-bottom: 5px;
}

.tts-controls button {
    cursor: pointer;
    padding: 5px;
    margin: 5px;
    max-width: 120px;
    transition: background-color 0.3s ease;
}

@media (max-width: 720px) {
    .tts-controls {
        justify-content: space-evenly;
    }

    .tts-controls button {
        max-width: 80%;
        margin-bottom: 10px;
    }
      
    .voice-select {
        max-width: auto;
        width: auto;
    }
}

.voice-select {
    max-width: 250px;
    margin: 5px;
}

  /* END JOURNAL */
