/* =========================================
   JPCCS QUICK LINKS SIDEBAR
   Main colour: #176280
   ========================================= */

.jpccs-quicklinks {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #d8e4e8;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}


/* HEADER */

.jpccs-quicklinks-header {
    background: #176280;
    padding: 20px 22px 18px;
    color: #ffffff;
}

.jpccs-quicklinks-header h3 {
    color: #ffffff !important;
    font-size: 21px;
    font-weight: 700;
    margin: 0 0 7px 0;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.7);
}

.jpccs-quicklinks-header p {
    color: #ffffff;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}


/* BODY */

.jpccs-quicklinks-body {
    padding: 16px 18px 20px;
}


/* MAIN SUBMISSION BUTTON */

.jpccs-main-button {
    display: block;
    text-align: center;
    background: #176280;
    color: #ffffff !important;
    padding: 12px 10px;
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none !important;
    margin-bottom: 9px;
    transition: all 0.2s ease;
}

.jpccs-main-button:hover {
    background: #104d65;
    color: #ffffff !important;
}


/* POLICY BUTTON */

.jpccs-policy-button {
    display: block;
    background: #124f68;
    color: #ffffff !important;
    text-align: center;
    padding: 11px;
    border-radius: 7px;
    font-weight: 700;
    text-decoration: none !important;
    margin-bottom: 10px;
}

.jpccs-policy-button:hover {
    background: #0d4055;
}


/* REGISTER + LOGIN */

.jpccs-account-buttons {
    display: flex;
    gap: 8px;
}

.jpccs-account-buttons a {
    width: 50%;
    text-align: center;
    padding: 9px 5px;
    border: 1px solid #9fc3d0;
    border-radius: 7px;
    background: #f4f9fa;
    color: #176280 !important;
    font-weight: 600;
    text-decoration: none !important;
}

.jpccs-account-buttons a:hover {
    background: #176280;
    color: #ffffff !important;
}


/* DIVIDER */

.jpccs-divider {
    border-top: 2px solid #176280;
    margin: 17px 0;
}


/* TRANSPARENCY HEADING */

.jpccs-quicklinks-body h4 {
    color: #176280;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.3px;
    margin: 0 0 12px;
}


/* TRANSPARENCY LINKS */

.jpccs-small-link {
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: #f4f9fa;
    border: 1px solid #c8dde4;
    border-radius: 6px;

    padding: 9px 11px;
    margin-bottom: 7px;

    color: #176280 !important;
    font-size: 13px;
    font-weight: 600;

    text-decoration: none !important;
}

.jpccs-small-link span {
    font-size: 18px;
    line-height: 1;
}

.jpccs-small-link:hover {
    background: #176280;
    color: #ffffff !important;
}


/* MOBILE */

@media (max-width: 768px) {

    .jpccs-quicklinks {
        margin-top: 25px;
    }

}