/* Pinellas County, Florida property search - Hamilton style */

#pcfps-container {
    padding: 25px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    max-width: 100%;
    margin: 30px auto;
}

#pcfps-container h2 {
    margin-top: 0;
    font-size: 22px;
    color: #23282d;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 12px;
    margin-bottom: 25px;
}

.pcfps-box {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.pcfps-box input {
    flex: 1;
    min-width: 220px;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    background-color: #f9f9f9;
    transition: border-color 0.2s;
}

.pcfps-box input:focus {
    border-color: #0073aa;
    outline: none;
    background-color: #fff;
}

#pcfps-btn {
    padding: 12px 25px;
    font-size: 16px;
    background-color: #0073aa;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

#pcfps-btn:hover {
    background-color: #00608e;
}

#pcfps-status {
    margin-bottom: 14px;
    font-size: 15px;
    min-height: 20px;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

#pcfps-table {
    width: 100%;
    border-collapse: collapse;
    color: #444;
    min-width: 1500px;
}

#pcfps-table th,
#pcfps-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    white-space: nowrap;
    font-size: 17px;
}

#pcfps-table th {
    background-color: #f8f9fa;
    color: #333;
    font-weight: 700;
}

#pcfps-table tr:nth-child(even) {
    background-color: #fdfdfd;
}

#pcfps-table tr:hover {
    background-color: #f0f8ff;
}

@media (max-width: 640px) {
    .pcfps-box input {
        min-width: 100%;
    }

    #pcfps-btn {
        width: 100%;
    }

    #pcfps-table th,
    #pcfps-table td {
        font-size: 17px;
    }
}
