.gpsr-links {
    display: block;
    gap: 20px;
    margin-top: 20px;
	margin-bottom:30px;
}

.gpsr-links .gpsr-heading-section{
    margin-bottom: 15px;
}
.gpsr-links a {
    cursor: pointer;
    text-decoration: underline;
	color: #960f01 !important;
}

.gpsr-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    z-index: 9998;
}
.gpsr-overlay.active {
    opacity: 1;
    pointer-events: all;
}


.gpsr-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 500px;
    height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.gpsr-sidebar.open {
    transform: translateX(0);
}

.gpsr-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:10px 16px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
}

.gpsr-close {
    background: #fff !important;
    border: 0;
    font-size: 24px;
    cursor: pointer;
    color: #888;
    padding: 0;
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #888;
    border-radius: 50%;
}

.gpsr-close:hover{
    background: #960f01 !important;
}

.gpsr-body {
    padding: 16px;
    overflow-y: auto;
}

body.gpsr-lock {
    overflow: hidden;
}
