.favorite-developer-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 40px;
    height: 40px;
}

.favorite-developer-btn i {
    font-size: 1.8rem;
    color: #1E90FF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.favorite-developer-btn:hover i {
    transform: translate(-50%, -50%) scale(1.1);
}

.tahn-developer-alert {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    overflow: hidden;
}

.alert-main {
    display: flex;
    gap: 24px;
    padding: 20px;
}

.alert-left {
    flex: 0 0 300px;
}

.alert-left img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
}

.alert-right {
    flex: 1;
}

.alert-type {
    display: inline-block;
    background: #f5f5f5;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 14px;
    margin-bottom: 8px;
}

.alert-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.alert-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.meta-tag {
    background: #e8e5ff;
    color: #4338ca;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 14px;
}

.alert-dates {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.date-tag {
    background: #e0f7ff;
    color: #0369a1;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 14px;
}

.alert-description {
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.5;
}

.alert-price {
    font-weight: 600;
    font-size: 18px;
    color: #111827;
}

.tahn-error-message {
    background-color: #fff3f3;
    border: 1px solid #ffcdd2;
    color: #d32f2f;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.tahn-no-alerts {
    text-align: center;
    padding: 40px;
    background: #f5f5f5;
    border-radius: 4px;
    color: #666;
}

.developer-info {
    margin-top: 1.2rem;
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-end;
    gap: 1rem;
}

.developer-info img {
    max-width: 50px;
    height: auto;
    border-radius: 4px;
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.header-row h3 {
    margin: 0;
    flex: 1;
}

.tahn-developer-alerts-wrapper .search-result-item-list .search-favorite-btn {
    width: auto;
    height: auto;
    padding: 12px 20px;
    color: white;
}

.tahn-matched-deals-wrapper .search-result-item-list .search-favorite-btn {
    width: auto;
    height: auto;
    padding: 12px 20px;
    color: white;
}

.tahn-more-from-developer-wrapper .search-result-item-list .search-favorite-btn {
    width: auto;
    height: auto;
    padding: 12px 20px;
    color: white;
}

.tahn-more-from-developer-wrapper .search-result-item-list-gallery img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 9.63px;
}

span.favorite-developer-btn-tooltip {
    display: none;
    background: white;
    position: absolute;
    padding: 15px;
    bottom: 50px;
    right: 0;
    width: 300px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
}