.artist-layout-container {
            margin: 20px 0;
        }

        .artist-top-bar {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .artist-search-wrapper {
            flex: 2;
            min-width: 250px;
        }

        .artist-search-input {
            width: 100%;
            padding: 8px 12px;
            background-color: var(--webflex-light-bg, #efefef);
            border: 1px solid var(--webflex-accent, #cea350);
            color: var(--webflex-ui-text, #2e3137);
            border-radius: 0px;
            font-family: "Lato", sans-serif;
            font-size: 14px;
            outline: none;
        }

        .artist-search-input:focus {
            border-color: var(--webflex-accent, #cea350);
            box-shadow: 0 0 0 2px rgba(var(--webflex-accent-rgb), 0.1);
        }

        .artist-country-wrapper {
            flex: 2;
            min-width: 250px;
        }

        .artist-count-wrapper {
            flex: 1;
            min-width: 200px;
            text-align: right;
            color: var(--webflex-ui-text, #2e3137);
            font-size: 14px;
            font-family: "Lato", sans-serif;
        }

        .artist-filters {
            width: 100%;
        }

        .artist-filters .custom-dropdown {
            width: 100%;
        }


        

        .artist-content-full {
            width: 100%;
        }
        
        .artist-filters {
            flex: 1;
            min-width: 250px;
            display: flex;
            gap: 15px;
        }
        
        .artist-filters .custom-dropdown {
            flex: 1;
            min-width: 200px;
        }
        
        .artist-filters select {
            width: 100%;
            padding: 8px;
            background: #1c1e29;
            border: 1px solid var(--webflex-accent, #cea350);
            color: #dfe2e5;
            border-radius: 0px;
            cursor: pointer;
            font-family: "Lato", sans-serif;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
        }
        
        .filtered-artists {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .artist-item {
            background: var(--webflex-light-bg, #efefef);
            padding: 20px;
            border-radius: 0px;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(var(--webflex-accent-rgb), 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .artist-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(var(--webflex-accent-rgb), 0.1);
            border-color: rgba(var(--webflex-accent-rgb), 0.3);
        }
        
        .artist-item:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--webflex-accent, #cea350), var(--webflex-title-link-bg, #2e3137));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .artist-item:hover:before {
            opacity: 1;
        }
        
        .artist-title {
            margin: 0;
            padding: 10px 0;
            text-align: center;
            position: relative;
        }
        
        .artist-title a {
            color: var(--webflex-accent, #cea350);
            text-decoration: none;
            font-family: "Lato", sans-serif;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
            padding: 8px 16px;
            border-radius: 0px;
            background: var(--webflex-title-link-bg, #2e3137);
        }
        
        .artist-title a:hover {
            color: var(--webflex-title-link-hover-text, #ffffff);
            background: var(--webflex-title-link-hover-bg, #2e3137);
            transform: scale(1.02);
        }
        
        /* Mobil responsive düzenleme */
        @media (max-width: 768px) {
            .artist-layout-container {
                flex-direction: column;
            }
            
            .artist-sidebar {
                flex: none;
                width: 100%;
            }
            
            .filtered-artists {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }
        
        .artist-image {
            margin-bottom: 15px;
        }
        
        .artist-image img {
            width: 100%;
            height: auto;
            border-radius: 0px;
            display: block;
        }
        
        .artist-country {
            color: var(--webflex-card-text, #2e3137);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
            text-align: center;
        }
        
        /* T-cymbal buton stilini kullan */
        .artist-item .view-tc-button {
            display: inline-block;
            padding: 8px 20px;
            background: var(--webflex-accent, #cea350);
            color: #fff;
            text-decoration: none;
            border-radius: 0px;
            transition: background 0.3s;
        }
        
        .artist-item .view-tc-button:hover {
            background: #e66d2e;
            color: #fff;
        }

        /* Dropdown stilleri - Birleştirilmiş */
        .artist-filters select,
        .custom-select {
            width: 100%;
            padding: 8px 32px 8px 12px;
            background-color: #1c1e29;
            border: 1px solid var(--webflex-accent, #cea350);
            color: #dfe2e5;
            border-radius: 0px;
            cursor: pointer;
            font-family: "Lato", sans-serif;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
        }

        /* Option stilleri */
        .artist-filters select option,
        .custom-select option {
            background-color: #1c1e29 !important;
            color: #dfe2e5 !important;
            padding: 12px !important;
        }

        /* Hover ve seçili durumlar */
        .artist-filters select option:hover,
        .artist-filters select option:focus,
        .artist-filters select option:active,
        .artist-filters select option:checked,
        .custom-select option:hover,
        .custom-select option:focus,
        .custom-select option:active,
        .custom-select option:checked {
            background-color: var(--webflex-accent, #cea350) !important;
            color: #ffffff !important;
        }

        /* Webkit scrollbar stilleri */
        .artist-filters select::-webkit-scrollbar,
        .custom-select::-webkit-scrollbar {
            width: 8px;
        }

        .artist-filters select::-webkit-scrollbar-track,
        .custom-select::-webkit-scrollbar-track {
            background: #1c1e29;
        }

        .artist-filters select::-webkit-scrollbar-thumb,
        .custom-select::-webkit-scrollbar-thumb {
            background: var(--webflex-accent, #cea350);
            border-radius: 0px;
        }

        /* Firefox için özel stiller */
        @-moz-document url-prefix() {
            .artist-filters select,
            .custom-select {
                color: #dfe2e5;
                background-color: #1c1e29;
            }
            
            .artist-filters select option,
            .custom-select option {
                background-color: #1c1e29;
            }

            .artist-filters select option:hover,
            .artist-filters select option:focus,
            .artist-filters select option:active,
            .artist-filters select option:checked,
            .custom-select option:hover,
            .custom-select option:focus,
            .custom-select option:active,
            .custom-select option:checked {
                background-color: var(--webflex-accent, #cea350) !important;
                color: #ffffff !important;
            }
        }

        /* Select elementlerinin focus durumunu düzelt */
        .artist-filters select:focus {
            outline: none;
            box-shadow: none;
            border-color: var(--webflex-accent, #cea350);
        }

        /* Webkit için özel focus stilini kaldır */
        .artist-filters select:focus::-webkit-focus-ring-color {
            outline: none;
        }

        /* Firefox için özel focus stilini kaldır */
        .artist-filters select:-moz-focusring {
            color: transparent;
            text-shadow: 0 0 0 #dfe2e5;
        }

        .custom-dropdown {
            position: relative;
            width: 100%;
        }

        .selected-option {
            padding: 8px 32px 8px 12px;
            background-color: var(--webflex-light-bg, #efefef);
            border: 1px solid var(--webflex-accent, #cea350);
            color: var(--webflex-filter-text, #2e3137);
            border-radius: 0px;
            cursor: pointer;
            font-family: "Lato", sans-serif;
        }

        .dropdown-options {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--webflex-light-bg, #efefef);
            border: 1px solid var(--webflex-accent, #cea350);
            border-radius: 0px;
            margin-top: 4px;
            max-height: 300px;
            overflow-y: auto;
            z-index: 1000;
        }

        .dropdown-option {
            padding: 8px 12px;
            cursor: pointer;
            color: var(--webflex-filter-text, #2e3137);
        }

        .dropdown-option:hover {
            background-color: var(--webflex-accent, #cea350);
            color: #ffffff;
        }

        .view-artist-button {
            display: inline-block;
            padding: 8px 20px;
            background: transparent;
            border: none;
            color: var(--webflex-accent, #cea350);
            text-decoration: none;
            border-radius: 0px;
            font-family: "Lato", sans-serif;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .view-artist-button:hover {
            background: transparent;
            color: var(--webflex-accent, #cea350);
        }

        /* Sayfalandırma Stilleri */
        .artist-pagination {
            margin: 40px auto;
            text-align: center;
            max-width: 800px;
            display: flex;
            justify-content: center;
        }

        .artist-pagination .page-numbers {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            gap: 5px;
            flex-wrap: wrap;
        }

        .artist-pagination .page-numbers li {
            display: inline-block;
        }

        .artist-pagination .page-numbers a,
        .artist-pagination .page-numbers span {
            display: block;
            padding: 8px 12px;
            background: var(--webflex-light-bg, #efefef);
            color: var(--webflex-pagination-text, #2e3137);
            text-decoration: none;
            border: 1px solid var(--webflex-accent, #cea350);
            border-radius: 0px;
            transition: all 0.3s ease;
            font-family: "Lato", sans-serif;
            font-size: 14px;
            min-width: 40px;
            text-align: center;
        }

        .artist-pagination .page-numbers a:hover {
            background: var(--webflex-accent, #cea350);
            color: #fff;
        }

        .artist-pagination .page-numbers .current {
            background: var(--webflex-accent, #cea350);
            color: #fff;
        }

        .artist-pagination .page-numbers .prev,
        .artist-pagination .page-numbers .next {
            padding: 8px 15px;
        }

.results-count {
        margin-bottom: 20px;
        padding: 10px;
        background: #2d2d2d;
        border-radius: 0px;
        color: #dfe2e5;
        font-size: 14px;
        font-family: "Lato", sans-serif;
    }

#artistSearch:focus {
    border-color: var(--webflex-accent, #cea350);
    box-shadow: 0 0 0 1px var(--webflex-accent, #cea350);
    outline: none;
}

.artist-search-no-results {
    margin: 20px 0;
    padding: 16px;
    text-align: center;
    color: var(--webflex-ui-text, #2e3137);
    background: var(--webflex-light-bg, #efefef);
    border: 1px solid rgba(var(--webflex-accent-rgb), 0.3);
    font-family: "Lato", sans-serif;
    font-size: 14px;
}
