/* Notiz-Info & Tipps */
.notiz-info {
    background: rgba(30,40,60,0.93);
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px #00e6d022;
    padding: 1.2rem 1.2rem 0.7rem 1.2rem;
    max-width: 500px;
    margin: 2rem auto 1.2rem auto;
    color: #b2f7ef;
    text-align: center;
}
.notiz-tipps {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    color: #fff;
    font-size: 1.05rem;
    text-align: left;
}
.notiz-tipps li {
    margin-bottom: 0.5rem;
    padding-left: 0.2rem;
}

/* Notiz Actions & Counter */
.notiz-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -0.5rem;
    margin-bottom: 0.5rem;
}
#notiz-counter {
    color: #00e6d0;
    font-size: 0.98rem;
    opacity: 0.8;
}

/* Notiz wichtig (star) */
.notiz-item.important {
    border-left: 5px solid #ffe066;
    background: linear-gradient(90deg, #ffe06622 0%, #1a2332 100%);
    position: relative;
}
.notiz-item.important::before {
    content: '⭐';
    position: absolute;
    left: 1rem;
    top: 1rem;
    font-size: 1.2rem;
}
.notiz-container {
    background: rgba(30,40,60,0.95);
    border-radius: 18px;
    box-shadow: 0 4px 24px #0008;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    margin: 2rem auto 1.5rem auto;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    animation: fadeIn 0.5s;
}
#notiz-text {
    min-height: 80px;
    border-radius: 10px;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    background: #222c;
    color: #fff;
    resize: vertical;
    box-shadow: 0 2px 8px #0004;
    transition: box-shadow 0.2s;
}
#notiz-text:focus {
    box-shadow: 0 4px 16px #00e6d088;
    outline: none;
}
#save-notiz {
    background: #00e6d0;
    color: #222;
    border: none;
    border-radius: 8px;
    padding: 0.7rem 1.2rem;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 8px #00e6d044;
    transition: background 0.2s, color 0.2s;
}
#save-notiz:hover {
    background: #00bfa3;
    color: #fff;
}
.notiz-list {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.notiz-item {
    background: #1a2332;
    border-radius: 12px;
    padding: 1rem;
    color: #fff;
    box-shadow: 0 2px 8px #0006;
    position: relative;
    animation: fadeIn 0.4s;
}
.notiz-item .delete-notiz {
    position: absolute;
    top: 0.7rem;
    right: 1rem;
    color: #00e6d0;
    font-size: 1.3rem;
    cursor: pointer;
    font-weight: bold;
    background: none;
    border: none;
    transition: color 0.2s;
}
.notiz-item .delete-notiz:hover {
    color: #fff;
}
