.page-header-modern-sm {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 15px;
    background: linear-gradient(90deg, #e0f7fa, #e8f5e9, #fff);
    background-size: 300% 300%;
    animation: headerGradientMove 15s ease infinite;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif !important;
    border: 1px solid #e0e0e0;
}

@keyframes headerGradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.header-left-sm {
    display: flex;
    flex-direction: column;
}

.header-left-sm h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-left-sm h3 i {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 1px;
}

.breadcrumb-sm {
    font-size: 13px;
    color: #888;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 3px;
}

.breadcrumb-sm a {
    color: #666;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 3px 6px;
    border-radius: 8px;
}

.breadcrumb-sm a:hover {
    color: #1ab394;
    background: rgba(26, 179, 148, 0.06);
}

.breadcrumb-sm span {
    color: #1ab394;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    background: transparent;
    padding: 3px 6px;
    border-radius: 8px;
    border: none;
}

.page-header-button {
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    border: 1px solid #d0d0d0;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13.5px;
    color: #2c3e50;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.page-header-button i {
    color: #1abc9c;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.page-header-button:hover {
    background: linear-gradient(135deg, #f0fbf8, #e8fdf2);
    border-color: #1abc9c;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.page-header-button:hover i {
    transform: rotate(90deg);
}
