::-webkit-scrollbar {
    display: none;
}

body {
    -ms-overflow-style: none;
    scrollbar-width: none;
    background-color: #f8fafc;
}

.tag-input-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    background: #f8fafc;
    min-height: 2.5rem;
}

.skill-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background: #4481eb;
    color: white;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.skill-tag button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0;
    margin-left: 0.25rem;
}

.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 0.75rem;
    margin-top: 0.25rem;
    max-height: 200px;
    overflow-y: auto;
    z-index: 50;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.autocomplete-item {
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: background 0.2s;
}

.autocomplete-item:hover {
    background: #f8fafc;
}

.tab-active {
    color: #4481eb;
    border-bottom: 2px solid #4481eb;
}

.activity-collapsed {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.rotate-180 {
    transform: rotate(180deg);
}

.transition-transform {
    transition: transform 0.3s ease;
}

.image-upload-wrapper {
    position: relative;
}

.image-upload-wrapper:hover .image-upload-overlay {
    opacity: 1;
}

.hosting-tag-input {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    background-color: #f8fafc;
    min-height: 3rem;
}
.hosting-tag-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background-color: #4481eb;
    color: white;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}
.hosting-tag-remove {
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.hosting-tag-remove:hover {
    opacity: 1;
}
.hosting-autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    margin-top: 0.25rem;
    max-height: 200px;
    overflow-y: auto;
    z-index: 50;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: none;
}
.hosting-autocomplete-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}
.hosting-autocomplete-item:hover {
    background-color: #f8fafc;
}
.event-card {
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.25rem;
    background-color: white;
    transition: box-shadow 0.2s;
}
.event-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.upload-area {
    border: 2px dashed #cbd5e1;
    transition: all 0.3s ease;
}
.upload-area:hover {
    border-color: #4481eb;
    background-color: #f1f5fe;
}
.upload-area.dragover {
    border-color: #4481eb;
    background-color: #e0ebff;
}
.progress-step {
    transition: all 0.3s ease;
}
.progress-step.active {
    background-color: #4481eb;
    color: white;
}
.progress-step.completed {
    background-color: #10b981;
    color: white;
}

.skill-progress {
    transition: width 0.6s ease;
}
.priority-high {
    background-color: #fef3c7;
    color: #92400e;
}
.priority-medium {
    background-color: #dbeafe;
    color: #1e40af;
}
.priority-low {
    background-color: #f3f4f6;
    color: #4b5563;
}


/* HTMX Indicators */
.htmx-indicator {
    display: none;
}
.htmx-request .htmx-indicator {
    display: inline-block;
}
.htmx-request.htmx-indicator {
    display: inline-block;
}
.htmx-request .htmx-indicator-hide {
    display: none;
}
.htmx-request.htmx-indicator-hide {
    display: none;
}

