﻿body {
}

/* changes for dtc lab india */
/*<%--added for sharing button--% >*/
.share-float {
    position: fixed;
    bottom: 230px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .share-float a {
        background-color: #007bff;
        color: #fff;
        padding: 10px;
        border-radius: 50%;
        font-size: 16px;
        text-align: center;
        width: 40px;
        height: 40px;
        line-height: 20px;
        transition: background 0.3s;
    }

        .share-float a:hover {
            background-color: #0056b3;
        }

    .share-float .facebook {
        background-color: #3b5998;
    }

    .share-float .twitter {
        background-color: #1da1f2;
    }

    .share-float .linkedin {
        background-color: #0077b5;
    }

    .share-float .whatsapp {
        background-color: #25d366;
    }
/*<%--added for sharing button--%>*/
/* changes for dtc lab india */

.popup-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 400px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

    .popup-content h3 {
        margin-top: 0;
    }

/*.btn {
    background-color: #28a745;
    border: none;
    color: white;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 4px;
}*/
