
.template-container {
    padding: 15px;
    display: flex;
    gap: 20px;
    overflow-x: auto;
}

.template {
    width: 150px;
    background: white;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.2s;
}

.template:hover {
    transform: scale(1.03);
}

.template img {
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.template-title {
    padding: 10px;
}

.template-title strong {
    display: block;
    font-size: 14px;
    color: #202124;
}

.template-title span {
    font-size: 12px;
    color: #5f6368;
}

#template-form-list {
    display: flex;
    gap: 20px;
    overflow-x: auto;
}

.template-hovered {
    background-color: #FFC000;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
}

.remove-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    transition: transform 0.1s ease-in-out;
}

.remove-btn:hover {
    transform: scale(1.1);
}
