/* General page styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Centering the main title */
header h1 {
    text-align: center;
    margin-bottom: 30px;
}

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

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

/* Subtlene ramki zamiast domyślnych czarnych */
input[type="text"], input[type="password"], textarea {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Styl dla aktywnego pola (Focus) - delikatna poświata */
input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
}

button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

/* Main page note stream (Chronological list) */
.notes-list {
    list-style-type: none;
    padding: 0;
    margin-bottom: 40px;
}

/* Removed horizontal lines between items */
.notes-list li {
    padding: 8px 0;
}

.yiddish-link {
    display: block;
    text-decoration: none;
    color: #1a0dab;
    font-family: "SBL Hebrew", "Ezra SIL", "Arial Hebrew", serif;
    font-size: 24px;
    text-align: right;
}

.yiddish-link:hover {
    text-decoration: underline;
}

/* Yiddish Input Fields (Formulator RTL fix) */
.yiddish-input {
    direction: rtl !important;
    text-align: right !important;
    font-family: "SBL Hebrew", "Ezra SIL", "Arial Hebrew", "Times New Roman", serif;
    font-size: 22px !important;
    line-height: 1.5;
    unicode-bidi: plaintext;
}

/* Full note view components */
.yiddish-text {
    font-family: "SBL Hebrew", "Ezra SIL", "Arial Hebrew", serif;
    text-align: right;
}

.content-box {
    font-size: 20px;
    line-height: 1.6;
    background: #fafafa;
    padding: 20px;
    border-radius: 4px;
    margin-top: 20px;
}

.meta-date {
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
}

.comments-section {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px dashed #ccc;
    font-style: italic;
    color: #555;
}

.error-msg {
    color: red;
    font-weight: bold;
}

/* Bottom navigation styles */
.bottom-nav {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.bottom-nav a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.bottom-nav a:hover {
    text-decoration: underline;
}
