/* Kurban Teslimat Notları Stilleri */
.not-header {
    margin: 20px 0;
    padding: 15px;
    background: linear-gradient(135deg, #f0fff4 0%, #e6ffed 100%);
    border: 2px solid #22c55e;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.1);
}

.not-title {
    color: #16a34a !important;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.not-title::before {
    content: "📦";
    font-size: 20px;
}

.not-content {
    color: #15803d !important;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 10px 0 0 0;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .not-header {
        margin: 15px 0;
        padding: 12px;
    }
    
    .not-title {
        font-size: 16px;
    }
    
    .not-content {
        font-size: 14px;
    }
}

/* Animasyon */
.not-header {
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
