.section-title h2{
    margin-bottom: 5px;
    font-weight: 600;
}
.category-list-img{
    height:105px;
    width:105px;
    object-fit: contain;
}
.format-list-img{
    height:105px;
    width:105px;
    object-fit: contain;
}
.file-list-img{
    height:110px;
    width:110px;
    object-fit: contain;
}
.list-file-desc h4{
    font-size: 20px !important;
    font-weight:400!important;
}

.border-radius-10{
    border-radius: 10px;
}
.text-normal{
    font-weight: 500;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    font-weight: 600;
    font-size: 14px;
    z-index: 10000;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 300px;
}
.notification.show { transform: translateX(0); }
.notification i { font-size: 18px; color: #d1fae5; }
.notification.success { background: linear-gradient(135deg, #10b981 0%, #059669 100%); box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3); }
.notification.error { background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3); }
.notification.info { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3); }
@media (max-width: 768px) {
    .notification { top: 10px; right: 10px; left: 10px; max-width: none; transform: translateY(-100px); }
    .notification.show { transform: translateY(0); }
}


.tool-category-icon{
    height: calc(100% - 10px);
    object-fit: contain;
    filter:invert(1);
}


