/* Artists Loading and Error States */
.loading-state,
.error-state,
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    grid-column: 1 / -1;
}

.loading-state .loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(78, 205, 196, 0.3);
    border-top: 4px solid #4ecdc4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.loading-state p {
    color: #cccccc;
    font-size: 1.2rem;
    margin: 0;
}

.error-state {
    color: #ff6b6b;
}

.error-state i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #ff6b6b;
}

.error-state h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.error-state p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.empty-state {
    color: #999999;
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #666666;
}

.empty-state h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.empty-state p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.btn-retry {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.btn-retry:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Artist Card Details */
.artist-details {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
    font-size: 0.85rem;
}

.artist-details span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #cccccc;
}

.artist-details i {
    font-size: 0.8rem;
    color: #4ecdc4;
    width: 12px;
}

.location,
.experience {
    color: #cccccc;
}



@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10000;
    min-width: 300px;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

.notification-info {
    background-color: #3498db;
    color: white;
}

.notification-success {
    background-color: #2ecc71;
    color: white;
}

.notification-error {
    background-color: #e74c3c;
    color: white;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 5px;
    margin-left: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.notification-close:hover {
    opacity: 1;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Modal Loading States */
.modal-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    text-align: center;
}

.modal-loading .loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(78, 205, 196, 0.3);
    border-top: 4px solid #4ecdc4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.modal-loading p {
    color: #cccccc;
    font-size: 1.2rem;
    margin: 0;
}

.modal-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    text-align: center;
}

.modal-error i {
    font-size: 4rem;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.modal-error h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.modal-error p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.btn-close-error {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.btn-close-error:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Specialty items styling */
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.specialty-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 20px;
    color: #4ecdc4;
    font-size: 0.9rem;
    font-weight: 500;
}

.specialty-item i {
    font-size: 0.8rem;
    color: #4ecdc4;
}

/* Video items styling */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.video-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    width: 100%;
    height: 200px;
    position: relative;
}

.video-thumbnail iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px 8px 0 0;
}

.video-title {
    padding: 10px;
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 500;
}

.no-videos {
    color: #999999;
    font-style: italic;
    text-align: center;
    padding: 20px;
}