
    <style>
    .template-detail {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }
    .template-detail h2 {
        color: #333;
        border-bottom: 2px solid #e94560;
        padding-bottom: 10px;
        margin-top: 30px;
    }
    .download-btn, .backup-download-btn {
        transition: all 0.3s ease;
    }
    .download-btn:hover {
        background: #c7354d !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(233, 69, 96, 0.3);
    }
    .backup-download-btn:hover {
        background: #357abd !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(74, 144, 226, 0.3);
    }
    .template-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
        margin: 20px 0;
    }
    .template-card {
        border: 1px solid #ddd;
        border-radius: 8px;
        overflow: hidden;
        transition: transform 0.3s ease;
    }
    .template-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .template-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    .template-card-content {
        padding: 15px;
    }
    .template-card h3 {
        margin: 0 0 10px 0;
        color: #333;
    }
    .template-card .category {
        color: #666;
        font-size: 14px;
        margin-bottom: 10px;
    }
    .template-card .view-btn {
        display: inline-block;
        padding: 8px 20px;
        background: #e94560;
        color: white;
        text-decoration: none;
        border-radius: 4px;
        font-size: 14px;
    }
    .template-card .view-btn:hover {
        background: #c7354d;
    }
    .filter-section {
        margin: 20px 0;
        padding: 15px;
        background: #f9f9f9;
        border-radius: 5px;
    }
    .filter-section a {
        display: inline-block;
        padding: 8px 15px;
        margin: 5px;
        background: white;
        border: 1px solid #ddd;
        text-decoration: none;
        color: #333;
        border-radius: 4px;
    }
    .filter-section a:hover,
    .filter-section a.active {
        background: #e94560;
        color: white;
        border-color: #e94560;
    }
    </style>
    