.zozo-event-sidebar-filter-wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.zozo-event-sidebar-filter {
    width: 100%;
    background: #ffffff;
    padding: 16px;
    border-radius: 14px;
    box-shadow: 0 2px 18px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.filter-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.filter-block strong {
    font-size: 14px;
    margin-bottom: 4px;
    color: #222;
}

.filter-block label {
    font-size: 13px;
    color: #444;
}

.filter-block input[type="text"],
.filter-block input[type="date"],
.filter-block input[type="number"] {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
}

.search-field {
    position: relative;
}

.search-field input {
    width: 100%;
    padding: 9px 35px 9px 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    opacity: 0.6;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    cursor: pointer;
}

.price-range input[type="range"] {
    width: 100%;
}

.filter-btn {
    background: #111;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}

.filter-btn:hover {
    opacity: 0.85;
}

.zozo-recent-events {
    margin-top: 18px;
    padding: 12px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 18px rgba(0,0,0,0.06);
}

.zozo-recent-events h4 {
    margin-bottom: 10px;
    font-size: 15px;
}

.recent-item {
    padding: 6px 0;
    border-bottom: 1px solid #eee;
}

.recent-item:last-child {
    border-bottom: none;
}

.recent-item a {
    text-decoration: none;
    font-size: 13px;
    color: #333;
}

@media (max-width: 768px) {
    .zozo-event-sidebar-filter-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .zozo-event-sidebar-filter {
        padding: 12px;
    }
}
.recent-item {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.recent-thumb {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.recent-content a {
    font-size: 13px;
    color: #333;
    text-decoration: none;
}

.recent-content a:hover {
    color: #4a6cf7;
}


.zozo-event-filter.layout-vertical .zozo-filter-items {
    display: block;
}
.zozo-event-filter.layout-vertical .zozo-filter-item {
    display: block;
    margin-bottom: 6px;
}

.zozo-event-filter.layout-horizontal .zozo-filter-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.zozo-event-filter.layout-horizontal .zozo-filter-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.zozo-filter-group {
    margin-bottom: 15px;
}
.zozo-filter-title {
    font-weight: 600;
    margin-bottom: 8px;
}


.zozo-event-search {
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.zozo-event-search input[type="search"] {
    flex: 1;
    height: 45px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.zozo-event-search input[type="search"]:focus {
    border-color: #0073e6;
    box-shadow: 0 0 0 2px rgba(0,115,230,0.1);
}

.zozo-event-search button {
    height: 45px;
    padding: 0 20px;
    background: #0073e6;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.zozo-event-search button:hover {
    background: #005bb5;
}
.zozo-skill-wrapper {
    display: grid;
    gap: 20px;
}
.zozo-organizer-wrapper {
    width: 100%;
}

.zozo-skills-wrapper {
    margin-top: 20px;
}

.zozo-skill-item {
    margin-bottom: 15px;
}

.zozo-skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.zozo-skill-bar {
    height: 8px;
    border-radius: 10px;
    overflow: hidden;
}

.zozo-skill-bar-inner {
    height: 100%;
    width: 0;
    transition: width 0.6s ease;
}
.zozo-skill-bar {
    width: 100%;
    height: 10px;
    background: #eee;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.zozo-skill-bar-inner {
    height: 100%;
    width: 0%;
    background: #6c63ff;
    border-radius: 20px;
    transition: width 0.8s ease-in-out;
}

.zozo-skill-progress {
    height: 100%;
    width: 0%;
    transition: width 0.8s ease-in-out;
}
.zozo-skill-heading {
    margin-bottom: 15px;
}

.zozo-skill-heading h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}