body {
    font-family: 'Inter', sans-serif;
    background-color: #0b0c10;
}
.tag {
    display: inline-block;
    background-color: #3b82f6;
    color: white;
    padding: 4px 8px;
    border-radius: 9999px;
    font-size: 0.75rem;
    margin-right: 4px;
    margin-bottom: 4px;
}
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}
.modal-content {
    background-color: #1f2937;
    padding: 2.5rem;
    border-radius: 1rem;
    max-width: 90%;
    width: 800px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
.players-modal {
    z-index: 1001;
}

/* Custom scrollbar styling for character selection lists */
.character-scroll-list {
    scrollbar-width: thin;
    scrollbar-color: #4b5563 #374151;
}

.character-scroll-list::-webkit-scrollbar {
    width: 8px;
}

.character-scroll-list::-webkit-scrollbar-track {
    background: #374151;
    border-radius: 4px;
}

.character-scroll-list::-webkit-scrollbar-thumb {
    background-color: #4b5563;
    border-radius: 4px;
    border: 2px solid #374151;
}

.character-scroll-list::-webkit-scrollbar-thumb:hover {
    background-color: #6b7280;
}
