/**
 * Registries Page Styles
 * Ensures the Quick Facts section matches the live site exactly
 * Live Site Reference: http://www.titlesearchers.ca/registries/alberta/
 */

/* Quick Facts Section - Main Container */
h3[name="QuickFacts"],
h3 a[name="QuickFacts"] {
    font: normal 18px/18px "Contrail One", cursive;
    color: #352f2c;
    margin: 20px 0 10px 0;
    letter-spacing: -1px;
}

/* Quick Facts Table Layout */
#quick-facts-table,
.quick-facts-table {
    width: 100%;
    border: 0;
    margin: 10px 0 20px 0;
}

#quick-facts-table td,
.quick-facts-table td {
    vertical-align: top;
    padding: 5px;
    border: 0;
}

/* Quick Facts Image Cell */
#quick-facts-table td:first-child,
.quick-facts-table td:first-child {
    width: 130px;
    text-align: left;
}

#quick-facts-table img,
.quick-facts-table img {
    max-width: 120px;
    height: auto;
    border: 0;
    margin-right: 10px;
}

/* Quick Facts Text Content */
#quick-facts-table td:last-child,
.quick-facts-table td:last-child {
    width: auto;
    text-align: left;
    color: #352f2c;
}

#quick-facts-table ul,
.quick-facts-table ul {
    margin: 0;
    padding-left: 20px;
    list-style-type: disc;
}

#quick-facts-table li,
.quick-facts-table li {
    margin-bottom: 5px;
    line-height: 1.6;
}

/* Other Land Registries Section */
h3 + table {
    margin-top: 15px;
}

/* Responsive Design for Mobile */
@media (max-width: 767px) {
    /* Stack the Quick Facts table on mobile */
    #quick-facts-table,
    .quick-facts-table {
        display: block;
    }

    #quick-facts-table tbody,
    .quick-facts-table tbody {
        display: block;
    }

    #quick-facts-table tr,
    .quick-facts-table tr {
        display: block;
    }

    #quick-facts-table td,
    .quick-facts-table td {
        display: block;
        width: 100% !important;
        text-align: center;
    }

    #quick-facts-table td:first-child,
    .quick-facts-table td:first-child {
        margin-bottom: 15px;
    }

    #quick-facts-table img,
    .quick-facts-table img {
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 480px) {
    h3[name="QuickFacts"],
    h3 a[name="QuickFacts"] {
        font-size: 16px;
        line-height: 16px;
    }

    #quick-facts-table img,
    .quick-facts-table img {
        max-width: 100px;
    }
}

/* Breadcrumb Styling */
#BreadCrumb {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
    padding: 10px 0;
}

#BreadCrumb a {
    color: #352f2c;
    text-decoration: none;
}

#BreadCrumb a:hover {
    color: #d27048;
    text-decoration: underline;
}

/* Results Table Styling - Already exists in main-style.css but ensuring consistency */
#ResultsTable {
    width: 100%;
    margin: 20px 0;
}

#ResultsTable th {
    background-color: #6e594a;
    color: #e8d9ad;
    font-weight: bold;
    text-align: left;
    font-size: 10pt;
    padding: 5px;
}

#ResultsTable td {
    padding: 8px 5px;
}

/* Row Highlighting */
.Row_0 {
    background-color: transparent;
}

.Row_1 {
    background-color: #dccca3;
}

.Row_Highlight {
    background-color: #d0bf99;
}

/* Region List Links */
.region-list-table {
    width: 100%;
    margin-top: 20px;
}

.region-list-table td {
    vertical-align: top;
    padding: 5px 10px 5px 0;
}

.region-list-table a {
    color: #352f2c;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.region-list-table a:hover {
    color: #d27048;
    text-decoration: underline;
}

/* Responsive adjustments for region list */
@media (max-width: 767px) {
    .region-list-table td {
        display: block;
        width: 100% !important;
    }
}
