body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.search_div,
.div_form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
    width: 100%;
    max-width: 400px;
}

.search_div,
.div_form form {
    display: flex;
    flex-direction: column;
}

.search_div,
.div_form label {
    margin-bottom: 5px;
    font-weight: bold;
}

.search_div input[type="title"],
.div_form input[type="title"],
.div_form textarea {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 5px;
    padding: 10px;
    color: #fff;
    margin-bottom: 15px;
    font-size: 1rem;
}

.search_div input[type="title"] {
    margin-bottom: 0;
}

.div_form input[type="title"]::placeholder,
.div_form textarea::placeholder {
    color: #ddd;
}

.div_form button {
    background: #6a11cb;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.div_form button:hover {
    background: #2575fc;
    transform: scale(1.05);
}

.div_notes {
    width: 100%;
    max-width: 400px;
}

.note {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.note h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    color: #fff;
}

.note p {
    margin: 0;
    font-size: 1rem;
    color: #eee;
}

.note:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

#note {
    resize: vertical;
}

.fields {
    outline: none;
}

.stats_div {
    max-width: 400px;
}

.notes_iframe {
    border: none;
    width: 100%;
    height: 100vh;
    overflow: visible;
}

.stats_iframe {
    border: none;
    width: 400px;
    height: 80px;
    overflow: visible;
}