html {
scroll-behavior: smooth;
}
/* Alapbeállítások - Megnyugtató háttér és olvasható betűk */
body {
    background-color: #fffdf2; /* Lágy, krémes sárga */
    color: #333; /* Sötétszürke a maximális olvashatóságért */
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    padding: 20px 0;
}

.container-fluid {
    max-width: 900px; /* Ne legyen túl széles, mert nehéz olvasni */
    background-color: #fffceb;
    margin: auto;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 10px 15px 40px rgba(0,0,0,0.05); /* Finom árnyék */
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: -200px bottom;
    position: relative;
    border: 1px solid #44335a;
}
.container-fluid::after {
  content: "";
  position: absolute;
  width: 542px;
  height: 543px;
  opacity: .069;
  z-index: 0;
  background-image: url("szammisztika.org.svg");
  display: inline-block;
  background-position-x: 170px;
  background-position-y: 170px;
  background-repeat: no-repeat;
  bottom: 0%;
  margin: 0 auto;
  right: 0;
  pointer-events: none;
}

/* Címsorok - Elegáns és barátságos lila */
h1, h2, h3, h4 {
    color: #5d3f6a; /* Spirituális lila */
    /* text-align: center; */
    margin-bottom: 20px;
}

h1 { font-weight: 800; font-size: 2.5rem; }
h2 { font-weight: 400; font-size: 1.5rem; color: #8e6d9e; }
em{text-align: center;}
.ul{text-align: left;}
.kalkulatorhoz{
    text-decoration: none;
}
.kalkulatorhoz:hover{
    text-decoration: underline;
}
.kalkulatorhoz div{
    margin-top: 40px;
    color: #5d3f6a;
    font-size: 20px;
    font-weight: 500;
}

/* Szöveges tartalom */
p, ul {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Táblázat stílus - Tisztaság és átláthatóság */
.table {
    margin: 30px 0;
    border: 1px solid #f0e68c;
    border-radius: 10px;
    overflow: hidden;
    border-spacing: 0;
    width: 100%;
}
.line{
    line-height: 3px;
}

.table td {
    text-align: center;
    padding: 12px;
    background-color: #fff;
    border-color: #fff9c4;
    text-transform: uppercase;
    font-weight: bold;
    color: #5d3f6a;
}

tr:last-child td {
    border-top: 1px solid #f0e68c;
    border-spacing: 0px;
}

/* ŰRLAP - Itt volt a hiba, most kijavítjuk! */
form {
    background: #ffb;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #f3e5ab;
    margin: 40px 0;
}

label {
    font-weight: 600;
    color: #5d3f6a;
    margin-bottom: 5px;
}

input{
    width: 90%;
}
/* Beviteli mezők javítása - Fehér háttér, fekete szöveg! */
.form-control {
    background-color: #ffffff !important;
    color: #000000 !important;
    border: 1px solid #ced4da;
    border-radius: 8px;
    padding: 12px;
    font-size: 1.2rem;
    font-family: 'Times New Roman', Times, serif;
}

.form-control:focus {
    border-color: #8e6d9e;
    box-shadow: 0 0 0 0.25rem rgba(142, 109, 158, 0.25);
}

/* Gomb - Hívogató és kattintásra ösztönző */
button {
    background: linear-gradient(135deg, #8e6d9e 0%, #5d3f6a 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    width: 80%;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 10px;
    margin: 0 auto;
    text-transform: uppercase;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(93, 63, 106, 0.3);
}

/* Eredmény zóna - Kiemelés */
#eredmeny {
    background-color: #fff;
    border-left: 5px solid #8e6d9e;
    padding: 20px;
    margin-top: 30px;
    border-radius: 0 15px 15px 0;
}

#eredmeny p {
    margin-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 5px;
}

#eredmeny strong {
    color: #5d3f6a;
}
small, input{
    display: block;
}
#sum{
    /* Key properties for breaking long words */
    overflow-wrap: break-word;  /* Modern standard */
    word-wrap: break-word;      /* Legacy support */
    word-break: break-word;     /* Some browsers */
}

/* Footer - Diszkrét és tiszta */
footer {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #777;
}

.ehun {
    color: #8e6d9e;
    text-decoration: none;
    font-weight: bold;
}
#logo-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo{
        max-width: 200px;
}
h1, h2{
    text-align: center;
}

/* Mobil optimalizálás */
@media (max-width: 600px) {
    .container-fluid {
        padding: 15px;
    }
    h1 { font-size: 1.8rem; }
}
@media (max-width: 330px) {
    form{
        padding: 10px;
    }
    button{
        width: inherit;
    }
    .container-fluid {
        padding: 3px;
    }
}
@media (max-width: 330px) {
   button{
        font-size: 12px;
    } 
}

/* Sötét mód beállítások */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #120f1a; /* Mély, sötétlila-fekete háttér */
        color: #e0e0e0; /* Világosszürke szöveg a szem kímélése érdekében */
    }

    .container-fluid {
        background: #1e1a29; /* Valamivel világosabb lila panel */
        box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    }

    h1, h3, h4 {
        color: #d8b4fe; /* Lágy pasztell lila a címeknek */
    }

    h2 {
        color: #b794f4;
    }

    p, ul, li {
        color: #cbd5e0;
    }

    /* Táblázat sötét módban */
    .table, tr:last-child td {
        border-color: #44335a;
    }

    .table td {
        background-color: #2d2438;
        color: #e9d8fd;
        border-color: #44335a;
    }

    /* ŰRLAP - Itt a legfontosabb a javítás! */
    form {
        background: #251f30;
        border: 1px solid #44335a;
    }

    label {
        color: #d8b4fe;
    }
    input:-webkit-autofill,
    input:-webkit-autofill:focus {
    transition: background-color 0s 600000s, color 0s 600000s !important;
    }

    small {
        color: #a0aec0;
    }

    /* Beviteli mezők sötét módban - Világos szöveg, sötét, de jól látható háttér */
    .form-control {
        background-color: #2d2438 !important; /* Sötétebb lila háttér */
        color: #ffffff !important; /* Fehér szöveg */
        border: 1px solid #5d3f6a !important;
    }

    .form-control::placeholder {
        color: #807090;
    }

    .form-control:focus {
        background-color: #352a44 !important;
        border-color: #b794f4 !important;
        box-shadow: 0 0 0 0.25rem rgba(183, 148, 244, 0.25);
    }

    /* Gomb marad az élénk gradiens, mert sötéten is jól mutat */
    button {
        background: linear-gradient(135deg, #9f7aea 0%, #6b46c1 100%);
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }

    /* Eredmény zóna kiemelése */
    #eredmeny {
        background-color: #251f30;
        border-left: 5px solid #b794f4;
    }

    #eredmeny p {
        border-bottom: 1px solid #352a44;
    }

    #eredmeny strong {
        color: #d8b4fe;
    }

    /* Footer */
    footer {
        border-top: 1px solid #352a44;
        color: #a0aec0;
    }

    .ehun {
        color: #b794f4;
    }
}