    .cookie-modal {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        max-width: 500px;
        z-index: 1050; /* High z-index to overlay on top of other content */
        display: block; /* Change this to 'none' and control with JS */
        visibility: hidden; /* Initially hidden, shown by JavaScript */
    }

    .modal-content {
        background-color: #fff;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
        padding: 20px;
    }

    .modal-header, .modal-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .modal-header .close {
        cursor: pointer;
        border: none;
        background: none;
        font-size: 21px;
    }

    .modal-title {
        margin: 0;
        line-height: 1.5;
    }

    .modal-body {
        margin-top: 10px;
    }

    .modal-footer button {
        min-width: 80px; /* Ensures buttons have a consistent width */
    }
	


/* share follow */

.pinned-share-panel {
    position: fixed;
    top: 300px; /* Adjust distance from bottom */
    right: 5px; /* Adjust distance from right */
	width: 22px;
    background-color: #f0f0f0;
    padding: 2px;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 999; /* Ensure it's on top */
	line-height: 10px;
}
.pinned-share-panel div {
	margin-top:10px;
	margin-bottom:5px;
}

.pinned-share-panel img{
	height: 16px;
	width: 16px;
}

.panel-heading {
    background-color: #5b3691 !important;
    border-color: #5b3691 !important;
}
.panel-primary {
    border-color: #5b3691 !important;
}
.jumbotron {
    background-color: #5b369129 !important;
}
.page-header {
	border-bottom: 0px !important;
}

@media screen and (min-width: 768px) {
    .jumbotron {
        padding-top: 4px !important;
        padding-bottom: 44px !important;
    }
}