.card-container {
    display: flex;
    justify-content: space-between;
}
.video-card {
    width: 23%;
    height:100%;
    padding: 10px;
    overflow: hidden;
    border-radius: 10px; /* Rounded corners for the video card */
}

.video-card video {
    width: 100%;
    height: auto;
    border-radius: 10px; /* Rounded corners for the video */
    transition: transform 0.2s ease-in-out;
}

.video-card:hover video {
    transform: scale(1.05);
}

.video-title {
    text-align: center;
    margin-top: 10px;
}
/* Define the styles for the button container */
/* Define the styles for the button container */
.button-container {
    display: flex;
    flex-wrap: wrap;
}
/* Define the styles for the round button */
.round-button {
    width: 40px;/* Set the width of the button */
    height: 60px;/* Set the height of the button to make it round */
    border: none;
    background-color: rgb(252, 229, 236); /* Set the button background color to gray */
    border-radius: 50%; /* Make it round using border-radius */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px; /* Add margin to separate buttons */   
}
/* Style the image inside the button */
.round-button img {
    max-width: 80px; /* Set the max width of the image */
    max-height: 80px; /* Set the max height of the image */
    object-fit: cover; /* Make the image cover the available space */
    margin-bottom: 40px;
}
/*.round-imgsty{
    margin-top: 10px!important;*/
}
.text-aligndesign{
    margin-top:30px;
}
/* ============================timmer card start=========================================== */
.timmer-card {
    width: 90%;
    height:90px;
    border-radius: 5px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    margin: 40px;
    padding: 20px;
    background-color: #f5410a;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.timmer-card-header {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}
.inside-image {
    width: 100px;
    height: 60px;
}

#timer {
    font-size: 24px; /* Adjust the font size to your preference */
}
.vtalk{
    color:white;
}
#timer{
    color: white;
    margin-right: 40px;
}

/* ============== */
.bill-image-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        .bill-image {
            margin: 20px;
            text-align: center;
            flex: 1;
        }

        .bill-image img {
            max-width: 100%;
            height: auto;
        }

        .bill-image-title {
            text-align: center;
        }

        @media (max-width: 768px) {
            .bill-image {
                margin: 10px;
                flex: 1 1 50%;
            }
        }
