/* pn-styles.css - Updated to match Automotive theme buttons */

.pn-button {
    background-color: #f9f9f9; /* Theme default gradient button bg */
    background-image: linear-gradient(to bottom, #fefefe, #f2f2f2); /* From listing_style.css */
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    color: #3a3a3a !important; /* Theme text color */
    font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 14px; /* Slightly smaller to match theme */
    font-weight: 700;
    padding: 5px 13px; /* From .automotive-custom-button */
    text-align: center;
    cursor: pointer;
    transition: background 0.25s ease;
}

.pn-button:hover {
    background-color: #c7081b !important; /* Theme red for hover (from various accents) */
    background-image: none !important; /* Remove gradient on hover for solid red */
    color: #fff !important; /* White text on red */
    border-color: #c7081b;
}

.pn-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999; /* Above theme elements */
}

.pn-modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    width: 300px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.3); /* Theme-like shadow */
}

.pn-close {
    float: right;
    cursor: pointer;
    font-size: 20px;
    color: #999;
}

.pn-close:hover {
    color: #c7081b; /* Theme red */
}

.pn-modal-content button {
    background-color: #c7081b !important; /* Theme red, solid */
    color: #fff !important;
    padding: 5px 13px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    transition: background 0.25s ease;
}

.pn-modal-content button:hover {
    background-color: #a50617 !important; /* Darker red for hover */
}

.pn-consent {
    font-size: 12px;
    color: #666; /* Theme text */
}