/* Watchlist Floating Bar Styles */
.watchlist-float-bar {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 12px 12px 0 0;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 9999;
    transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 90%;
    max-width: 600px;
    border: 1px solid #e5e7eb;
}

.watchlist-float-bar.active {
    bottom: 0;
}

.watchlist-count {
    background: #10b981;
    color: white;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    box-shadow: 0 2px 5px rgba(16, 185, 129, 0.4);
}

.watchlist-schools {
    flex: 1;
    display: flex;
    overflow-x: auto;
    gap: 0.5rem;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.watchlist-item {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #374151;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.watchlist-remove-btn {
    color: #ef4444;
    cursor: pointer;
    font-size: 0.8rem;
    transition: color 0.2s;
}

.watchlist-remove-btn:hover {
    color: #dc2626;
}

.watchlist-action-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.watchlist-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(16, 185, 129, 0.4);
}

.watchlist-clear-btn {
    background: transparent;
    color: #6b7280;
    border: 1px solid #d1d5db;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
    display: flex;
    align-items: center;
}

.watchlist-clear-btn:hover {
    background: #f3f4f6;
    color: #ef4444;
    border-color: #ef4444;
}

/* Pin Button Element */
.btn-pin {
    background: white;
    border: 1px solid #e5e7eb;
    color: #6b7280;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-pin:hover {
    background: #f9fafb;
    color: #10b981;
    border-color: #10b981;
}

.btn-pin.pinned {
    background: #ecfdf5;
    color: #059669;
    border-color: #10b981;
}

.btn-pin i {
    transition: transform 0.2s;
}

.btn-pin.pinned i {
    transform: rotate(45deg);
}