/*your custom style goes in this file*/
/*if you're overriding style blocks from genstyle.css, you only need to include the attributes you're overriding, not the whole block*/

/* Tables throughout the website */
#state-data-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333333;
}

#state-data-table th,
#state-data-table td {
    border: 1px solid #cccccc;
    padding: 8px 12px;
    text-align: left;
}

#state-data-table th {
    background-color: #00274d; /* dark blue header */
    color: #ffffff;
}

#state-data-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

#state-data-table tr:hover {
    background-color: #e0e0e0;
}

#state-data-table mark {
    padding: 0 2px;
    border-radius: 3px;
}

#center-data-table {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Tables throughout the website, but centered */
#center-data-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333333;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

#center-data-table th,
#center-data-table td {
    border: 1px solid #cccccc;
    padding: 8px 12px;
    text-align: center;
}

#center-data-table th {
    background-color: #00274d; /* dark blue header */
    color: #ffffff;
}

#center-data-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

#center-data-table tr:hover {
    background-color: #e0e0e0;
}

#center-data-table mark {
    padding: 0 2px;
    border-radius: 3px;
}


/* Table Search Area CSS */
.search-area {
    max-width: 100%;
    margin: 0 0 20px 0;
    padding: 16px;
    background-color: #d0d0d0; /* matches table TH */
    border: 1px solid #b5b5b5;
    border-radius: 8px;
}

.search-help {
    margin: 0 0 12px 0;
    font-size: 15px;
    color: #000;
}

#randolphALlanddeedSearch {
    display: block;
    width: 60%;
    max-width: 500px;
    margin: 0 auto 14px auto;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #8e8e8e;
    border-radius: 8px;
    background-color: #ffffff;
}

.search-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-btn {
    display: inline-block;
    padding: 10px 18px;
    background-color: #ffffff;
    border: 1px solid #8e8e8e;
    border-radius: 6px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.search-btn:hover {
    background-color: #f0f0f0;
}

/* Rounded Border Radius for Images */
.rounded-image {
    border-radius: 16px;
    overflow: hidden;
}

.rounded-image img {
    border-radius: 16px;
}

/* Mobile safety override */
@media (max-width: 768px) {
    .rounded-image,
    .rounded-image img {
        border-radius: 16px;
    }
}

.button-row {
    margin: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}