/* You can add global styles to this file, and also import other style files */
body {
    background-color: red;
}
.ant-image-mask {
    display: none !important;
}
.ant-image-img {
    cursor: pointer;
}
@media (max-width: 768px) {
    .carousel-section, .content-section {
        width: 100%;
        flex: none;
    }
}
.black-text {
    color: black;
}
.custom-card-header {
    color: black !important;
}
.custom-card .ant-card-head {
    border-bottom: 2px solid #d9d9d9 !important;
}
:where(.css-dev-only-do-not-override-12ddvt2).ant-btn-primary:not(:disabled):not(.ant-btn-disabled):hover {
    color: #fff;
    background-color: #5e5d5d !important;
}
.responsive-button {
    margin-top: 100px;
    width: 100%;
    max-width: 100%;
    margin: 15px auto;
    display: block;
    background-color: #b2883b !important;
    color:#000000!important

}
@media (max-width: 768px) {
    .responsive-button {
        width: 100%;
    }
}
@media (max-width: 480px) {
    .responsive-button {
        width: 200%;
        font-size: 14px;
        margin-left: 118px;
    }
}
.button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Adjust spacing between buttons */
    justify-content: center; /* Center-align buttons */
    margin: 10px;
}
.circle-button {
    border-radius: 50%; /* Makes the button circular */
    width: 40px; /* Diameter of the circle */
    height: 40px; /* Diameter of the circle */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;/* Font size inside the button */
    padding: 0;
    text-align: center;
}
/* to hide the (Scan an Image File) option */
#html5-qrcode-anchor-scan-type-change {
    pointer-events: none;
    text-decoration: none;
    cursor: not-allowed;
}
.carousel-container {
    flex: 1 1 50%;
    width: 100%;
    max-width: 600px;
}
.carousel-container .ant-carousel {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px;  /* Default height */
}
@media (max-width: 768px) {
    .carousel-container .ant-carousel {
        height: 400px; /* Adjusted height for tablets */
    }
}
@media (max-width: 480px) {
    .carousel-container .ant-carousel {
        height: 300px;  /* Adjusted height for mobile phones */
    }
}


