/* File: assets/css/style.css */

.ufcoe-program-offerings {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ufcoe-program-offering {
    display: flex;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.ufcoe-program-thumbnail {
    width: 30%;
}

.ufcoe-program-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ufcoe-program-content {
    flex: 1;
    padding: 20px;
}

.ufcoe-program-title {
    margin-top: 0;
    color: #333;
    font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif !important;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 18px;
    color: #CC4927 !important;
    letter-spacing: 1px;
}

.ufcoe-program-content a:hover {
    text-decoration: underline !important;

}
.program-offerings-count {
    font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif !important;    
}
.ufcoe-program-categories {
    margin-bottom: 10px;
}

.ufcoe-category {
    display: inline-block;
    background-color: #f0f0f0;
    padding: 5px 10px;
    border-radius: 15px;
    margin-right: 5px;
    font-size: 0.9em;
}

.ufcoe-program-description {
    margin-bottom: 15px;
}

.ufcoe-program-details {
    margin-top: 10px;
}

.ufcoe-program-link {
    display: inline-block;
    margin-right: 10px;
    color: #0066cc;
    text-decoration: none;
}

.ufcoe-program-link:hover {
    text-decoration: underline;
}


.ufcoe-program-offerings-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.ufcoe-program-offerings-table th,
.ufcoe-program-offerings-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
    vertical-align: top;
}

.ufcoe-program-offerings-table th {
    background-color: #f5f5f5;
    font-weight: bold;
}

/* Column widths */
.ufcoe-program-offerings-table th:nth-child(1),
.ufcoe-program-offerings-table td:nth-child(1) {
    width: 40%; /* Program column */
}

.ufcoe-program-offerings-table th:nth-child(2),
.ufcoe-program-offerings-table td:nth-child(2) {
    width: 25%; /* Categories column */
}

.ufcoe-program-offerings-table th:nth-child(3),
.ufcoe-program-offerings-table td:nth-child(3) {
    width: 35%; /* Available Programs column */
}

/* Program link styling */
.ufcoe-program-link {
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
    color: #0021A5;  /* UF Blue */
}

.ufcoe-program-link:hover {
    text-decoration: underline;
}

/* Program type labels */
.ufcoe-program-type {
    display: inline-block;
    padding: 2px 6px;
    margin-left: 6px;
    font-size: 0.85em;
    background-color: #e9ecef;
    border-radius: 3px;
}

/* Description text */
.ufcoe-program-offering td p {
    margin: 8px 0 0 0;
    font-size: 0.9em;
    color: #666;
}

.ufcoe-program-link {
    display: inline-block;
    margin-bottom: 5px;
    color: #0066cc;
    text-decoration: none;
}

.ufcoe-program-link:hover {
    text-decoration: underline;
}


/* Filters~ */
.ufcoe-program-filters {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 5px;
}

.ufcoe-filter-group {
    margin-bottom: 15px;
}

.ufcoe-filter-group h4 {
    margin-bottom: 10px;
    font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif !important;
    font-weight: 700;
    font-size: 14px;
    color: #0a0a0a;
}

.ufcoe-filter-group label {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 5px;
    transition: background-color 200ms, color 200ms;
    background-color: transparent;
    font: inherit;
    cursor: pointer;
    padding: 0 8px;
    color: #2e2e2e;
    border: 1px solid #9b9b9b;
    border-radius: 25px;
    font-size: 1em;
    white-space: nowrap;
}


.ufcoe-filter-group label:hover {
    background-color: white;
    color: #3a3a3a;
}

.ufcoe-filter-group label.is-active {
    background-color: #194588;
    border-color: #194588;
    color: #fff;
}
.ufcoe-filter-group input[type="checkbox"] {
    margin: 0 !important;
    appearance: none;

}



.ufcoe-program-type {
    display: none;
}

.ufcoe-reset-filters {
    background-color: #0021A5; /* UF Blue */
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
    font-size: 14px;
    transition: background-color 0.3s;
}

.ufcoe-reset-filters:hover {
    background-color: #00174D; /* Darker UF Blue */
}
