
body {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    margin: 0;
    font-family: Arial, sans-serif;
    scrollbar-color: #888 #f1f1f1;
    scrollbar-width: thin; /
}
.template-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.template {
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

iframe {
    width: 45vw;
    height: 50vh;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    transform-origin: 0 0;
    object-fit: cover;
    scrollbar-color:#555223;

}


button {
    padding: 10px 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}
 ::-webkit-scrollbar {
            width: 2px;
            color:red;
            background: #342344;      

        }

 ::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

 ::-webkit-scrollbar-thumb {
            background-color: #888;
            border-radius: 10px;
            border: 3px solid #f1f1f1;
        }


 ::-webkit-scrollbar-thumb:hover {
            background-color: #555;
        }
