.favorite-form {
    display: flex;
    justify-content: flex-end;  /* Sağa yasla */
}
.favorite-btn {
    background: none;
    border: 2px rgba(46, 48, 146, 0.808) solid;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    font-size: 14px;
    color: rgba(46, 48, 146, 0.808);
    min-width: 140px;           /* Minimum genişlik */
    justify-content: center;    /* Metni ortala */
    white-space: nowrap;        /* Metin satır kırılmasın */
}

.favorite-btn:hover {
    border-color: #ffc107;
    color: #ffc107;
}

.favorite-btn.active {
    background-color: #ffc107;
    border-color: #ffc107;
    color: white;
}

.star-icon {
    width: 20px;
    height: 20px;
}