body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #a5a0ec88;
    margin: 0;
    padding: 0;
}

h2, h3 {
    text-align: center;
    color: #333;
    margin-top: 10px;
    font-weight: 600;
}

.page-container {
    max-width: 750px;
    margin: 30px auto;
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

form {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

label {
    font-weight: 600;
    margin-bottom: 5px;
    color: #444;
}

input, textarea, select {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px;
    font-size: 15px;
    margin-bottom: 15px;
    background: #fafafa;
    transition: 0.2s;
    box-sizing: border-box;
}

textarea {
    resize: none;
    height: 120px;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #6c63ff;
    background: #fff;
}

button {
    background: #6c63ff;
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s;
}

button:hover {
    background: #554df2;
}


.eintrag {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 20px;

   
    border: 2px solid #6c63ff;

   
    box-shadow:
        0 4px 10px rgba(0,0,0,0.10),
        0 8px 20px rgba(0,0,0,0.08),
        inset 0 1px 3px rgba(255,255,255,0.6);

    transition: 0.2s;
}

.eintrag:hover {
    transform: translateY(-3px);
    box-shadow:
        0 6px 14px rgba(0,0,0,0.14),
        0 12px 26px rgba(0,0,0,0.10),
        inset 0 1px 3px rgba(255,255,255,0.6);
}

.eintrag strong {
    font-size: 17px;
    color: #333;
}

.eintrag .meta {
    color: #777;
    font-size: 13px;
    margin-top: 4px;
}

.eintrag .text {
    margin-top: 10px;
    line-height: 1.5;
}

.eintrag .sterne {
    color: #ffbf00;
    margin-top: 8px;
    font-size: 18px;
}

.antwort {
    background: #eef0ff;
    padding: 10px;
    border-radius: 10px;
    margin-top: 12px;
    font-size: 14px;
    border-left: 4px solid #6c63ff;
}

.action-buttons {
    margin-top: 12px;
}

.action-buttons a {
    padding: 8px 12px;
    background: #e5e5ff;
    color: #4b47d9;
    text-decoration: none;
    border-radius: 8px;
    margin-right: 10px;
    transition: 0.2s;
    display: inline-block;
}

.action-buttons a:hover {
    background: #d4d4ff;
}

.small-container {
    max-width: 420px;
    margin: 50px auto;
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.small-container form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.small-container textarea,
.small-container select,
.small-container input {
    width: 100%;
    max-width: 350px;
}

.small-container button {
    margin-top: 10px;
    width: 100%;
    max-width: 350px;
}

@media (max-width: 600px) {
    .page-container {
        margin: 10px;
        padding: 15px;
    }

    .small-container {
        max-width: 90%;
        padding: 20px;
    }
}
