/* Legislative References section -- professional card treatment,
   matching the calendar/agenda cards used elsewhere on the site (white
   surface, subtle border, soft shadow, rounded corners) instead of the
   old flat 4px green border box with no shadow. */

.legref-card {
    background: #ffffff;
    border: 1px solid #e2e8e4;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 40, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* Left column: "The Rules of the Sanggunian Panlungsod" card */
.irp-card-header {
    background: linear-gradient(to bottom, #f3fbf5, #dcf1e2);
    padding: 28px 20px 22px;
    border-bottom: 1px solid #e2e8e4;
}
.irp-card-header img {
    width: 110px;
}
.irp-card-title {
    margin: 14px 0 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1b4332;
    line-height: 1.3;
}
.irp-card-footer {
    padding: 24px 20px 28px;
}

.legref-btn-primary {
    background-color: forestgreen;
    border: 1px solid forestgreen;
    color: #ffffff;
    border-radius: 999px;
    padding: 10px 22px;
    font-size: 0.85rem;
    font-weight: 600;
    width: 80%;
    box-shadow: 0 4px 10px rgba(34, 139, 34, 0.25);
    transition: background-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.legref-btn-primary:hover {
    background-color: #1b6b1b;
    border-color: #1b6b1b;
    color: #ffffff;
    box-shadow: 0 6px 14px rgba(34, 139, 34, 0.32);
    transform: translateY(-1px);
}
.legref-btn-primary:focus {
    box-shadow: 0 0 0 3px rgba(34, 139, 34, 0.25);
}

/* Right column: search card */
.legref-search-header {
    background: linear-gradient(to bottom, #f3fbf5, #dcf1e2);
    padding: 24px 24px 18px;
    border-bottom: 1px solid #e2e8e4;
}
.legref-search-title {
    margin: 0 0 6px;
    font-weight: 700;
    color: #1b4332;
}
.legref-search-subtitle {
    margin: 0;
    font-size: 0.8rem;
    color: #4a5a4f;
}

.legref-form {
    padding: 24px 28px 28px;
}
.legref-form .form-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #1b4332;
}

.legref-select,
.legref-search-input {
    border: 1px solid #d1e7dd;
    border-radius: 8px;
}
.legref-select:focus,
.legref-search-input:focus {
    border-color: forestgreen;
    box-shadow: 0 0 0 2px rgba(34, 139, 34, 0.15);
}

.legref-search-group .legref-search-input {
    border-radius: 8px 0 0 8px;
    border-right: none;
}
.legref-search-btn {
    background-color: forestgreen;
    border: 1px solid forestgreen;
    color: #ffffff;
    border-radius: 0 8px 8px 0;
    font-weight: 600;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.legref-search-btn:hover {
    background-color: #1b6b1b;
    border-color: #1b6b1b;
    color: #ffffff;
}

@media (max-width: 767.98px) {
    .irp-card-header,
    .legref-search-header {
        padding: 22px 18px 16px;
    }
    .legref-form {
        padding: 20px;
    }
    .legref-btn-primary {
        width: 100%;
    }
}
