/**
 * Tantárgy Szűrő - Stylesheet
 */

/* Form Wrapper */
.tantargy-szuro-wrapper {
    max-width: 100%;
    margin: 0 auto 30px;
}

/* Form */
.tantargy-szuro-form {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 30px;
}

/* Form Fields Container */
.tantargy-szuro-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

/* Individual Field */
.tantargy-szuro-field {
    flex: 1;
    min-width: 180px;
}

.tantargy-szuro-field.tantargy-szuro-search {
    flex: 1.5;
    min-width: 220px;
}
.tantargy-page-info {
	color: #1d294d !important;
}
/* Input and Select Styling */
.tantargy-szuro-field input[type="text"],
.tantargy-szuro-field select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    height: 44px;
}

.tantargy-szuro-field input[type="text"]:focus,
.tantargy-szuro-field select:focus {
    outline: none;
    border-color: #666;
}

.tantargy-szuro-field input[type="text"]::placeholder {
    color: #999;
}

/* Select styling */
.tantargy-szuro-field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
    cursor: pointer;
}

/* Submit Button */
.tantargy-szuro-submit {
    margin-top: 5px;
}

.tantargy-szuro-submit button {
    background-color: #666;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tantargy-szuro-submit button:hover {
    background-color: #555;
}

/* Page info text */
.tantargy-page-info {
    text-align: left;
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

/* Results List */
.tantargy-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tantargy-item {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.tantargy-item:first-child {
    padding-top: 10px;
}

.tantargy-item:last-child {
    border-bottom: none;
}

/* Link styling - prevents visited color change */
.tantargy-link {
    display: block;
    text-decoration: none;
    color: #0073aa;
    margin-bottom: 6px;
}

.tantargy-link:visited {
    color: #0073aa !important;
}

.tantargy-link:hover {
    color: #005177;
    text-decoration: underline;
}

.tantargy-link:visited:hover {
    color: #005177;
}

.tantargy-title {
    font-size: 18px;
    font-weight: 400;
	font-family: "Open Sans", sans-serif;
}

.tantargy-kod {
    font-size: 14px;
    color: #666;
    font-weight: normal;
    margin-left: 5px;
}

/* Meta Information - single line with separators */
.tantargy-meta {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.meta-separator {
    margin: 0 8px;
    color: #999;
    font-style: normal;
}

.meta-felev,
.meta-munkarend,
.meta-kepzesi-szint {
    color: #666;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 16px;
    background: #f9f9f9;
    border-radius: 4px;
}

/* Pagination */
.tantargy-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.tantargy-pagination .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.tantargy-pagination .page-link:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.tantargy-pagination .page-link.current {
    background: #666;
    border-color: #666;
    color: #fff;
}

.tantargy-pagination .page-link.prev,
.tantargy-pagination .page-link.next {
    padding: 0 15px;
}

.tantargy-pagination .page-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tantargy-szuro-fields {
        flex-direction: column;
    }

    .tantargy-szuro-field,
    .tantargy-szuro-field.tantargy-szuro-search {
        min-width: 100%;
    }

    .tantargy-szuro-submit button {
        width: 100%;
    }

    .tantargy-meta {
        font-size: 13px;
    }

    .tantargy-pagination {
        gap: 3px;
    }

    .tantargy-pagination .page-link {
        min-width: 35px;
        height: 35px;
        padding: 0 8px;
        font-size: 13px;
    }

    .tantargy-pagination .page-link.prev,
    .tantargy-pagination .page-link.next {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .tantargy-szuro-form {
        padding: 15px;
    }

    .tantargy-item {
        padding: 15px 0;
    }

    .tantargy-title {
        font-size: 16px;
    }

    .tantargy-meta {
        font-size: 12px;
    }

    .meta-separator {
        margin: 0 5px;
    }
}
