/* Reset stils, lai nodrošinātu vienotu izkārtojumu dažādos pārlūkos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Galvenā stils */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f7fc;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

/* Konteiners lapas saturam */
.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Virsrakstu stili */
h1, h2, h3 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #4CAF50;
}

/* Pogas galvenajā lapā */
button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 16px;
    margin: 10px 0;
}

button:hover {
    background-color: #45a049;
}

button:focus {
    outline: none;
}

/* Stils fpriekš sekcijām kā chat, quotes, meditation */
section {
    display: none;
    margin-top: 20px;
}

/* Tērzēšanas sadaļas stils */
#chatbotSection {
    display: block;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#chatBox {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 15px;
}

#chatBox p {
    padding: 5px 10px;
    margin: 5px 0;
}

/* Bota ziņojumu stils */
#chatBox .bot-message {
    background-color: #e0e0e0;
    border-radius: 8px;
    padding: 8px;
}

/* Lietotāja ziņojumu stils */
#chatBox .user-message {
    background-color: #4CAF50;
    color: white;
    border-radius: 8px;
    padding: 8px;
    text-align: right;
}

/* Forma ziņojumu nosūtīšanai */
form {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

input[type="text"] {
    padding: 10px;
    width: 80%;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 16px;
}

input[type="text"]:focus {
    border-color: #4CAF50;
    outline: none;
}

button[type="submit"] {
    padding: 10px 15px;
    font-size: 16px;
    background-color: #4CAF50;
    border: none;
    border-radius: 5px;
    color: white;
}

/* Pogas atgriešanai */
.back {
    background-color: #FF0000; 
    color: white; /* White text */
    padding: 10px 20px; /* Padding */
    border: none; /* No border */
    cursor: pointer; /* Pointer cursor on hover */
}

.back3 {
    background-color: #FF0000; /* Darker green on hover */
}

.back:hover {
    background-color: #FF0000;
}


/* Citātu sadaļa */
#quotesSection {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#quotesList {
    margin-top: 20px;
}

#quotesList div {
    background-color: #e0e0e0;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
}

/* Meditāciju sadaļa */
#meditationsSection {
    display: block;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#meditationList div {
    background-color: #e0e0e0;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
}

/* Saites stili */
a {
    color: #4CAF50;
    text-decoration: none;
    font-size: 16px;
}

a:hover {
    text-decoration: underline;
}

/* Kājenes stils */
footer {
    text-align: center;
    margin-top: 30px;
    color: #777;
}

/* Kļūdu ziņojumi */
.error-message {
    color: #ff0000;
    background-color: #ffe6e6;
    padding: 10px;
    border: 1px solid #ff0000;
    border-radius: 5px;
    margin-top: 10px;
    font-weight: bold;
}

/* Veiksmes ziņojumi */
.success-message {
    color: #4CAF50;
    background-color: #e6ffed;
    padding: 10px;
    border: 1px solid #4CAF50;
    border-radius: 5px;
    margin-top: 10px;
    font-weight: bold;
}

/* Ievades lauku stils formām */
input[type="text"], input[type="email"], input[type="password"] {
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 16px;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus {
    border-color: #4CAF50;
    outline: none;
}

input[type="submit"] {
    padding: 10px 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

/* Formu vizuālais noformējums */
form {
    margin-top: 20px;
    padding: 20px;
    background-color: #f4f7fc;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
