/* Form Field */
.pc-form-field {
    margin-bottom: 10px; /* space between fields */
}

.pc-form-field label {
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
}

#pc_service {
    margin-bottom: 15px;
}

/*******ADMIN SIDE**********/
/* Pagination styles for PrintCentral Job Orders */
.tablenav-pages {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
}

.tablenav-pages a.page-numbers {
    display: inline-block;
    padding: 4px 10px;
    background: #f1f1f1;
    border: 1px solid #ccc;
    border-radius: 3px;
    text-decoration: none;
    color: #0073aa;
    font-size: 13px;
    transition: background 0.2s, color 0.2s;
}

.tablenav-pages a.page-numbers:hover {
    background: #0073aa;
    color: #fff;
}

.tablenav-pages a.page-numbers.current {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
}

.tablenav-pages a.page-numbers.prev,
.tablenav-pages a.page-numbers.next {
    font-weight: bold;
}

/* Modal */
/* Overlay */
#pc-jo-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    display: none;
}

/* Modal container */
#pc-jo-modal {
    display: none;
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 30px;
    width: 90%;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 0 25px rgba(0,0,0,0.6);
    z-index: 9999;
    max-height: 90vh;
    overflow-y: auto;
    font-family: Arial, sans-serif;
}

/* Modal heading */
#pc-jo-modal h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.8em;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

/* Section headings */
#pc-jo-modal h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.3em;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

/* Service item */
#pc-jo-modal p {
    margin: 5px 0;
}

/* Lists inside services */
#pc-jo-modal ul {
    margin: 5px 0 15px 20px;
}

/* Bold labels inside lists */
#pc-jo-modal li strong {
    display: inline-block;
    width: 120px;
}

/* Close button */
#pc-jo-modal #pc-jo-close {
    margin-top: 20px;
    float: right;
}

/* Optional: make links look nice */
#pc-jo-modal a {
    color: #0073aa;
    text-decoration: none;
}
#pc-jo-modal a:hover {
    text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 600px) {
    #pc-jo-modal {
        padding: 20px;
        width: 95%;
    }

    #pc-jo-modal li strong {
        width: 100px;
    }

	

