.templates-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.templates-header {
    text-align: center;
    margin-bottom: 30px;
}

.templates-header h1 {
    font-size: 24px;
    color: #525B65;
}

.templates-header p {
    font-size: 16px;
    color: #525B65;
}

.templates-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.template-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    width: 250px;
    text-align: center;
    box-shadow: 0 6px 0px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.template-card:hover {
    transform: scale(1.05);
}

.template-logo {
    max-width: 100px;
    height: auto;
    margin-bottom: 10px;
}

.template-name {
    font-size: 18px;
    color: #525B65;
    margin: 10px 0;
}

.btn-configure {
    display: inline-block;
    background: linear-gradient(#2BC4C3, #2BC4C3);
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
  
}

.btn-configure:hover {
    background: linear-gradient(#2BC4C3, #2BC4C3);
}


