/* Custom Styles */
/* Wrapper for full responsiveness */
.custom-field-group {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 20px 0;
    overflow-x: auto;
    box-sizing: border-box;
}

/* Responsive Table Styling */
.acf-table {
    width: 100%;
    max-width: 800px;
    border-collapse: collapse;
    margin: 0 auto;       
    word-break: break-word;
    table-layout: auto;    
	margin-top: 15px;
    border: 2px solid #004085; /* Unified border for the entire table */
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
}

/* Table Rows and Cells */
.acf-table th,
.acf-table td {
    padding: 8px;
    text-align: left;
    border: 1px solid #ddd;
    vertical-align: top;
}

/* Alternate row background */
.acf-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Notification Title Row */
.acf-table .notification-title {
    text-align: center;
    font-weight: bold;
    font-size: 1.3em;
    color: #004085;
    padding: 10px;
}

/* Job Location Row */
.acf-table .job-location {
    text-align: center;
    font-size: 1em;
    font-weight: 700;
    color: #721C24;
    padding: 10px;
	border-bottom: 2px solid #004085;
}

/* Left column (label) */
.acf-table .content-row td:first-child {
    font-weight: 600;
    background-color: #f0f0f0;
    width: 40%;
    max-width: 40%;
	color: #333;
}

/* Right column (value) */
.acf-table .content-row td:last-child {
    width: 60%;
    max-width: 60%;
    background-color: #fff;
    padding-left: 10px;
    word-break: break-word;
	color: #495057;
}



.acf_post_apply-now-button {
    display: inline-block;
    padding: 8px 16px;
    background-color: #28a745;
    color: #fff !important;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
	text-decoration: none !important;
}

.acf_post_apply-now-button:hover {
    background-color: #218838;
	text-decoration: none !important;
}

