.share-blog-hit,
.share-hit-popup-buttons {
    text-align: center;
}

.share-hit-popup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.share-blog-hit {
    display: inline-block;
    cursor: pointer;
    position: relative;
}

.share-hit-popup-content {
    position: relative;
    width: 80%;
    max-width: 600px;
    margin: 100px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
}

.share-hit-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

/* .share-hit-button {
    display: inline-block;
    padding: 10px;
    margin: 5px;
    text-decoration: none;
    color: #fff;
    background-color: #333;
    border-radius: 5px;
    font-size: 16px;
} */

.share-facebook {
    background-color: #3b5998;
}

.share-twitter {
    background-color: #1da1f2;
}

.share-email {
    background-color: #d44638;
}
.share-hit-popup-heading {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center; /* Optional: centers the heading */
    color: #333; /* Dark color for the text */
}

.share-hit-button {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    text-decoration: none;
    color: #ffffff;  /* White text */
    background-color: #0077b5;  /* LinkedIn blue */
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;  /* Centers the text within the button */
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center; /* Aligns icon and text */
    justify-content: center; /* Centers the content inside */
}

/* LinkedIn Icon Styling */
.share-hit-button i {
    margin-right: 8px;  /* Adds space between icon and text */
    font-size: 18px;  /* Size of the icon */
}

/* Hover effect */
.share-hit-button:hover {
    background-color: #005c8a;  /* Darker blue for hover effect */
}

/* Add a little padding and style the button when it is focused or clicked */
.share-hit-button:focus,
.share-hit-button:active {
    outline: none;
    background-color: #004578;  /* Even darker blue for focus or active state */
}
