
/* 🌈 Base style */
.note-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 12px;
    background: #f9fafb;
    border-left: 6px solid #ccc;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    line-height: 1.5;
    transition: all 0.2s ease-in-out;
    margin: 1rem 0;
}

.note-box:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* 📱 Responsive */
@media (max-width: 640px) {
    .note-box {
        flex-direction: column;
    }
}

/* 🧩 Icon */
.note-box-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.note-box-icon svg {
    width: 100%;
    height: 100%;
}

/* 🧠 Content */
.note-box-content {
    flex: 1;
}
.note-box-title {
    display: inline-block;
    margin-bottom: 4px;
    font-weight: 600;
}

/* 🌈 Theme Colors */
.note-box-primary {
    background: #eef4ff;
    border-left-color: #3b82f6;
    color: #1e3a8a;
}
.note-box-primary .note-box-icon { color: #2563eb; }

.note-box-success {
    background: #ecfdf5;
    border-left-color: #10b981;
    color: #065f46;
}
.note-box-success .note-box-icon { color: #10b981; }

.note-box-warning {
    background: #fff7ed;
    border-left-color: #f59e0b;
    color: #92400e;
}
.note-box-warning .note-box-icon { color: #f59e0b; }

.note-box-danger {
    background: #fef2f2;
    border-left-color: #ef4444;
    color: #7f1d1d;
}
.note-box-danger .note-box-icon { color: #ef4444; }

.note-box-info {
    background: #ecfeff;
    border-left-color: #06b6d4;
    color: #0e7490;
}
.note-box-info .note-box-icon { color: #06b6d4; }
