/* ====== SIDEBAR JOURNAL INFO ====== */
.sidebar_info {
    background: linear-gradient(135deg, #ffecd2, #fcb69f);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Tahoma, sans-serif;
    animation: fadeIn 1s ease-in-out;
}

/* Headings inside the sidebar */
.sidebar_info strong {
    display: inline-block;
    font-weight: bold;
    color: #ff1493;
    margin-bottom: 4px;
}

/* Text */
.sidebar_info p {
    margin: 8px 0;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}

/* Add subtle separator between items */
.sidebar_info p:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding-bottom: 6px;
}

/* Hover effect */
.sidebar_info:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

/* Fade in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
